2016-03-07 22:42:33 +11:00
|
|
|
object @account
|
|
|
|
|
2017-03-28 20:23:33 +11:00
|
|
|
attributes :id, :username, :acct, :display_name, :locked, :created_at
|
2016-03-07 22:42:33 +11:00
|
|
|
|
2016-11-07 11:14:12 +11:00
|
|
|
node(:note) { |account| Formatter.instance.simplified_format(account) }
|
2016-09-10 04:04:34 +10:00
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
2017-04-11 08:38:58 +10:00
|
|
|
node(:avatar) { |account| full_asset_url(account.avatar_original_url) }
|
|
|
|
node(:avatar_static) { |account| full_asset_url(account.avatar_static_url) }
|
|
|
|
node(:header) { |account| full_asset_url(account.header_original_url) }
|
|
|
|
node(:header_static) { |account| full_asset_url(account.header_static_url) }
|
|
|
|
|
|
|
|
attributes :followers_count, :following_count, :statuses_count
|