mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-10 14:33:16 +00:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::Shallow::ReportSerializer < REST::BaseReportSerializer
|
|
attribute :target_account_id
|
|
|
|
def target_account_id
|
|
object.target_account_id&.to_s
|
|
end
|
|
end
|