mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9 lines
251 B
Ruby
9 lines
251 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.empty? ? account.username : account.display_name
|
||
|
end
|
||
|
end
|