Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
20 Zeilen
406 B
Ruby
20 Zeilen
406 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomWizard::NoticeSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:message,
|
|
:type,
|
|
:created_at,
|
|
:expired_at,
|
|
:dismissed_at,
|
|
:retrieved_at,
|
|
:dismissable
|
|
|
|
def dismissable
|
|
object.dismissable?
|
|
end
|
|
|
|
def type
|
|
CustomWizard::Notice.types.key(object.type)
|
|
end
|
|
end
|