mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
5176c689e9
At some point in the past we decided to rename the 'regular' notification state of topics/categories to 'normal'. However, some UI copy was missed when the initial renaming was done so this commit changes the spots that were missed to the new name.
20 lines
562 B
Ruby
20 lines
562 B
Ruby
# frozen_string_literal: true
|
|
|
|
module NotificationLevels
|
|
def self.all
|
|
@all_levels ||= Enum.new(muted: 0,
|
|
regular: 1,
|
|
normal: 1, # alias for regular
|
|
tracking: 2,
|
|
watching: 3,
|
|
watching_first_post: 4)
|
|
end
|
|
|
|
def self.topic_levels
|
|
@topic_levels ||= Enum.new(muted: 0,
|
|
regular: 1,
|
|
tracking: 2,
|
|
watching: 3)
|
|
end
|
|
end
|