mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-10 15:23:50 +01:00
12 lines
269 B
Ruby
12 lines
269 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::NoticeSerializer < ActiveModel::Serializer
|
||
|
class ActionSerializer < ActiveModel::Serializer
|
||
|
attributes :label, :url
|
||
|
end
|
||
|
|
||
|
attributes :id, :icon, :title, :message
|
||
|
|
||
|
has_many :actions, serializer: ActionSerializer
|
||
|
end
|