This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-22 20:21:10 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Activitystreams2BuilderHelper
|
|
|
|
# Gets a usable name for an account, using display name or username.
|
|
|
|
def account_name(account)
|
2017-04-25 06:06:06 -07:00
|
|
|
account.display_name.presence || account.username
|
2017-04-22 20:21:10 -07:00
|
|
|
end
|
|
|
|
end
|