about summary refs log tree commit diff
path: root/app/serializers/activitypub/reject_follow_serializer.rb
blob: 9a98229143a76de4853137346222c8a441ba4aae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class ActivityPub::RejectFollowSerializer < ActiveModel::Serializer
  attributes :id, :type, :actor

  has_one :object, serializer: ActivityPub::InverseFollowSerializer

  def id
    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#rejects/follows/', object.id].join
  end

  def type
    'Reject'
  end

  def actor
    ActivityPub::TagManager.instance.uri_for(object.target_account)
  end
end