mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
* 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
|