mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
122d59ac41
* 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
|