227a8d71b3
Squashed, modified, and rebased from glitch-soc/mastodon#2221. Co-authored-by: fef <owo@fef.moe> Co-authored-by: Jeremy Kescher <jeremy@kescher.at> Co-authored-by: neatchee <neatchee@gmail.com> Co-authored-by: Ivan Rodriguez <104603218+IRod22@users.noreply.github.com> Co-authored-by: Plastikmensch <plastikmensch@users.noreply.github.com>
26 lines
850 B
Ruby
26 lines
850 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::NotificationSerializer < ActiveModel::Serializer
|
|
attributes :id, :type, :created_at
|
|
|
|
belongs_to :from_account, key: :account, serializer: REST::AccountSerializer
|
|
belongs_to :target_status, key: :status, if: :status_type?, serializer: REST::StatusSerializer
|
|
belongs_to :report, if: :report_type?, serializer: REST::ReportSerializer
|
|
belongs_to :account_relationship_severance_event, key: :event, if: :relationship_severance_event?, serializer: REST::AccountRelationshipSeveranceEventSerializer
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
|
|
def status_type?
|
|
[:favourite, :reaction, :reblog, :status, :mention, :poll, :update].include?(object.type)
|
|
end
|
|
|
|
def report_type?
|
|
object.type == :'admin.report'
|
|
end
|
|
|
|
def relationship_severance_event?
|
|
object.type == :severed_relationships
|
|
end
|
|
end
|