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

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

  has_one :object, serializer: ActivityPub::FollowSerializer

  def type
    'Accept'
  end

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