This commit is contained in:
		
							parent
							
								
									ad892dbc0c
								
							
						
					
					
						commit
						116b8a6363
					
				
					 3 changed files with 24 additions and 2 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
class ActivityPub::AcceptFollowSerializer < ActiveModel::Serializer
 | 
					class ActivityPub::AcceptFollowSerializer < ActiveModel::Serializer
 | 
				
			||||||
  attributes :id, :type, :actor
 | 
					  attributes :id, :type, :actor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  has_one :object, serializer: ActivityPub::FollowSerializer
 | 
					  has_one :object, serializer: ActivityPub::InverseFollowSerializer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def id
 | 
					  def id
 | 
				
			||||||
    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join
 | 
					    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										22
									
								
								app/serializers/activitypub/inverse_follow_serializer.rb
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								app/serializers/activitypub/inverse_follow_serializer.rb
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,22 @@
 | 
				
			||||||
 | 
					# frozen_string_literal: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class ActivityPub::InverseFollowSerializer < ActiveModel::Serializer
 | 
				
			||||||
 | 
					  attributes :id, :type, :actor
 | 
				
			||||||
 | 
					  attribute :virtual_object, key: :object
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def id
 | 
				
			||||||
 | 
					    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#follows/', object.id].join
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def type
 | 
				
			||||||
 | 
					    'Follow'
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def actor
 | 
				
			||||||
 | 
					    ActivityPub::TagManager.instance.uri_for(object.target_account)
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def virtual_object
 | 
				
			||||||
 | 
					    ActivityPub::TagManager.instance.uri_for(object.account)
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					end
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
class ActivityPub::RejectFollowSerializer < ActiveModel::Serializer
 | 
					class ActivityPub::RejectFollowSerializer < ActiveModel::Serializer
 | 
				
			||||||
  attributes :id, :type, :actor
 | 
					  attributes :id, :type, :actor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  has_one :object, serializer: ActivityPub::FollowSerializer
 | 
					  has_one :object, serializer: ActivityPub::InverseFollowSerializer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def id
 | 
					  def id
 | 
				
			||||||
    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#rejects/follows/', object.id].join
 | 
					    [ActivityPub::TagManager.instance.uri_for(object.target_account), '#rejects/follows/', object.id].join
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue