mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
3cc47beb6e
as well as formatting of content
11 lines
490 B
Ruby
11 lines
490 B
Ruby
object @account
|
|
|
|
attributes :id, :username, :acct, :display_name, :note
|
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
|
node(:avatar) { |account| full_asset_url(account.avatar.url(:large, false)) }
|
|
node(:followers_count) { |account| account.followers.count }
|
|
node(:following_count) { |account| account.following.count }
|
|
node(:statuses_count) { |account| account.statuses.count }
|
|
node(:following) { |account| current_account.following?(account) }
|