2016-03-07 06:42:33 -05:00
|
|
|
object @account
|
|
|
|
|
|
|
|
attributes :id, :username, :acct, :display_name, :note
|
|
|
|
|
2016-09-09 14:04:34 -04:00
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
2016-09-04 08:04:26 -04:00
|
|
|
node(:avatar) { |account| full_asset_url(account.avatar.url(:large, false)) }
|
2016-09-18 12:18:46 -04:00
|
|
|
node(:header) { |account| full_asset_url(account.header.url(:medium, false)) }
|
2016-10-16 12:57:54 -04:00
|
|
|
node(:followers_count) { |account| account.try(:followers_count) || account.followers.count }
|
|
|
|
node(:following_count) { |account| account.try(:following_count) || account.following.count }
|
|
|
|
node(:statuses_count) { |account| account.try(:statuses_count) || account.statuses.count }
|