about summary refs log tree commit diff
path: root/app/serializers/rest/notification_serializer.rb
blob: 97fadf32edf152d350c8c4be63c4799ab2bfbf41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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 :status, if: :status_type?,   serializer: REST::StatusSerializer

  def status_type?
    [:favourite, :reblog, :mention].include?(object.type)
  end
end