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