* Change tests to have more specific expectations on sent ActivityPub payloads * Check that payload doesn't actually contain the contents of the boosted toot * Fix Undo Announce sometimes inlining the originally Announced status
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class ActivityPub::UndoAnnounceSerializer < ActivityPub::Serializer
 | 
						|
  attributes :id, :type, :actor, :to
 | 
						|
 | 
						|
  has_one :virtual_object, key: :object, serializer: ActivityPub::ActivitySerializer
 | 
						|
 | 
						|
  def id
 | 
						|
    [ActivityPub::TagManager.instance.uri_for(object.account), '#announces/', object.id, '/undo'].join
 | 
						|
  end
 | 
						|
 | 
						|
  def type
 | 
						|
    'Undo'
 | 
						|
  end
 | 
						|
 | 
						|
  def actor
 | 
						|
    ActivityPub::TagManager.instance.uri_for(object.account)
 | 
						|
  end
 | 
						|
 | 
						|
  def to
 | 
						|
    [ActivityPub::TagManager::COLLECTIONS[:public]]
 | 
						|
  end
 | 
						|
 | 
						|
  def virtual_object
 | 
						|
    ActivityPub::ActivityPresenter.from_status(object, allow_inlining: false)
 | 
						|
  end
 | 
						|
end
 |