You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
394 B

  1. # frozen_string_literal: true
  2. class REST::NotificationSerializer < ActiveModel::Serializer
  3. attributes :id, :type, :created_at
  4. belongs_to :from_account, key: :account, serializer: REST::AccountSerializer
  5. belongs_to :target_status, key: :status, if: :status_type?, serializer: REST::StatusSerializer
  6. def status_type?
  7. [:favourite, :reblog, :mention].include?(object.type)
  8. end
  9. end