forked from cybrespace/mastodon
		
	* Change ActivityPub paging to match spec. Clean up ActivityPub outbox changes. * Fix code style and test failures for OutboxController. * Attempt to fix CI errors.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Activitystreams2BuilderHelper
 | 
						|
  # Gets a usable name for an account, using display name or username.
 | 
						|
  def account_name(account)
 | 
						|
    account.display_name.presence || account.username
 | 
						|
  end
 | 
						|
end
 |