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.
2016-02-22 07:00:20 -08:00
|
|
|
module ProfileHelper
|
2016-02-27 15:02:59 -08:00
|
|
|
def display_name(account)
|
|
|
|
account.display_name.blank? ? account.username : account.display_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def profile_url(account)
|
|
|
|
account.local? ? super(name: account.username) : account.url
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_url(status)
|
|
|
|
status.local? ? super(name: status.account.username, id: status.stream_entry.id) : status.url
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|