2016-03-07 05:42:33 -06:00
|
|
|
object @account
|
2016-11-03 07:59:31 -05:00
|
|
|
cache false
|
2016-03-07 05:42:33 -06:00
|
|
|
|
|
|
|
attributes :id, :username, :acct, :display_name, :note
|
|
|
|
|
2016-09-09 13:04:34 -05:00
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
2016-09-04 07:04:26 -05:00
|
|
|
node(:avatar) { |account| full_asset_url(account.avatar.url(:large, false)) }
|
2016-09-18 11:18:46 -05:00
|
|
|
node(:header) { |account| full_asset_url(account.header.url(:medium, false)) }
|
2016-10-16 11:57:54 -05: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 }
|