mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-11 10:10:49 -05:00
Some checks are pending
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Crowdin / Upload translations / upload-translations (push) Waiting to run
Check formatting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::NotificationSerializer < ActiveModel::Serializer
|
|
include RoutingHelper
|
|
include ActionView::Helpers::UrlHelper
|
|
include NotificationFallbackConcern
|
|
|
|
# Please update app/javascript/mastodon/api_types/notifications.ts when making changes to the attributes
|
|
attributes :id, :type, :created_at, :group_key
|
|
|
|
attribute :filtered, if: :filtered?
|
|
|
|
attribute :fallback, if: :needs_fallback?
|
|
|
|
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
|
|
belongs_to :account_warning, key: :moderation_warning, if: :moderation_warning_event?, serializer: REST::AccountWarningSerializer
|
|
belongs_to :target_collection, key: :collection, if: :collection_type?, serializer: REST::CollectionSerializer
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
|
|
def group_key
|
|
object.group_key || "ungrouped-#{object.id}"
|
|
end
|
|
|
|
def status_type?
|
|
[:favourite, :reblog, :status, :mention, :poll, :update, :quoted_update, :quote].include?(object.type)
|
|
end
|
|
|
|
def collection_type?
|
|
[:added_to_collection, :collection_update].include?(object.type)
|
|
end
|
|
|
|
def report_type?
|
|
object.type == :'admin.report'
|
|
end
|
|
|
|
def relationship_severance_event?
|
|
object.type == :severed_relationships
|
|
end
|
|
|
|
def moderation_warning_event?
|
|
object.type == :moderation_warning
|
|
end
|
|
|
|
delegate :filtered?, to: :object
|
|
end
|