2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-04 08:47:37 +08:00
discourse/lib/notification_levels.rb
2016-07-07 11:21:50 -04:00

16 lines
471 B
Ruby

module NotificationLevels
def self.all
@all_levels ||= Enum.new(muted: 0,
regular: 1,
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