mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 02:25:27 +08:00
11 lines
165 B
Ruby
11 lines
165 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class OnboardingPopup
|
||
|
def self.types
|
||
|
@types ||= Enum.new(
|
||
|
first_notification: 1,
|
||
|
topic_timeline: 2,
|
||
|
)
|
||
|
end
|
||
|
end
|