blob: eeada56f2a415a17456dfb40604cee102ef814ec (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# 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
|