This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-03-07 12:42:33 +01:00
|
|
|
object @account
|
|
|
|
|
2017-03-28 11:23:33 +02:00
|
|
|
attributes :id, :username, :acct, :display_name, :locked, :created_at
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2016-11-07 01:14:12 +01:00
|
|
|
node(:note) { |account| Formatter.instance.simplified_format(account) }
|
2016-09-09 20:04:34 +02:00
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
2017-04-11 00:38:58 +02: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
|