1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/app/serializers/rest/account_warning_serializer.rb

16 lines
370 B
Ruby

# frozen_string_literal: true
class REST::AccountWarningSerializer < ActiveModel::Serializer
attributes :id, :action, :text, :status_ids, :created_at
has_one :target_account, serializer: REST::AccountSerializer
has_one :appeal, serializer: REST::AppealSerializer
def id
object.id.to_s
end
def status_ids
object&.status_ids&.map(&:to_s)
end
end