Fix notifications including wrong status in JSON (#4097)

th-downstream
Eugen Rochko 7 years ago committed by GitHub
parent da380ee179
commit e921680ae5

@ -4,7 +4,7 @@ class REST::NotificationSerializer < ActiveModel::Serializer
attributes :id, :type, :created_at attributes :id, :type, :created_at
belongs_to :from_account, key: :account, serializer: REST::AccountSerializer belongs_to :from_account, key: :account, serializer: REST::AccountSerializer
belongs_to :status, if: :status_type?, serializer: REST::StatusSerializer belongs_to :target_status, key: :status, if: :status_type?, serializer: REST::StatusSerializer
def status_type? def status_type?
[:favourite, :reblog, :mention].include?(object.type) [:favourite, :reblog, :mention].include?(object.type)

Loading…
Cancel
Save