mirror of
https://ghfast.top/https://github.com/discourse/discourse-follow.git
synced 2026-07-15 11:36:38 +08:00
7 lines
160 B
Ruby
7 lines
160 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
|