0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/app/serializers/custom_wizard/notice_serializer.rb

34 Zeilen
628 B
Ruby

2021-09-24 11:58:42 +02:00
# frozen_string_literal: true
class CustomWizard::NoticeSerializer < ApplicationSerializer
attributes :id,
2021-11-01 14:52:29 +01:00
:title,
2021-09-24 11:58:42 +02:00
:message,
:type,
2021-11-01 14:52:29 +01:00
:archetype,
2021-09-24 11:58:42 +02:00
:created_at,
:expired_at,
2021-10-05 14:54:06 +02:00
:updated_at,
2021-09-24 11:58:42 +02:00
:dismissed_at,
:retrieved_at,
2021-11-01 14:52:29 +01:00
:hidden_at,
:dismissable,
:can_hide
2021-09-24 11:58:42 +02:00
def dismissable
object.dismissable?
end
2021-11-01 14:52:29 +01:00
def can_hide
object.can_hide?
end
2021-09-24 11:58:42 +02:00
def type
CustomWizard::Notice.types.key(object.type)
end
2021-10-07 15:19:19 +02:00
def messsage
PrettyText.cook(object.message)
end
2021-09-24 11:58:42 +02:00
end