discourse-follow/lib/follow/notification.rb
2021-10-07 20:34:07 +03:00

11 lines
184 B
Ruby

# frozen_string_literal: true
class Follow::Notification
def self.levels
@levels ||= Enum.new(
regular: 1,
watching: 3,
watching_first_post: 4
)
end
end