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

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

  has_one :object, serializer: ActivityPub::FollowSerializer

  def type
    'Reject'
  end

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