mastodon/app/serializers/rest/notice_serializer.rb

11 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