This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-23 05:21:10 +02: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 15:06:06 +02:00
|
|
|
account.display_name.presence || account.username
|
2017-04-23 05:21:10 +02:00
|
|
|
end
|
|
|
|
end
|