2019-06-20 02:52:34 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::Admin::ReportSerializer < ActiveModel::Serializer
|
2022-01-17 09:41:33 +01:00
|
|
|
attributes :id, :action_taken, :category, :comment, :created_at, :updated_at
|
2019-06-20 02:52:34 +02:00
|
|
|
|
|
|
|
has_one :account, serializer: REST::Admin::AccountSerializer
|
|
|
|
has_one :target_account, serializer: REST::Admin::AccountSerializer
|
|
|
|
has_one :assigned_account, serializer: REST::Admin::AccountSerializer
|
|
|
|
has_one :action_taken_by_account, serializer: REST::Admin::AccountSerializer
|
|
|
|
|
|
|
|
has_many :statuses, serializer: REST::StatusSerializer
|
2022-01-17 09:41:33 +01:00
|
|
|
has_many :rules, serializer: REST::RuleSerializer
|
2019-06-20 02:52:34 +02:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
2022-01-17 09:41:33 +01:00
|
|
|
|
|
|
|
def statuses
|
|
|
|
object.statuses.with_includes
|
|
|
|
end
|
2019-06-20 02:52:34 +02:00
|
|
|
end
|