about summary refs log tree commit diff
path: root/app/helpers/activitystreams2_builder_helper.rb
blob: 717b470f0da982db09e9d2aedf0c8494a9a988e3 (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.presence || account.username
  end
end