mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 19:01:37 +01:00
6ae86f40d1
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>
21 lines
602 B
Ruby
21 lines
602 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
|
|
|
|
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
|
|
end
|