about summary refs log tree commit diff
path: root/app/views/api/v1/accounts/show.rabl
blob: 8826aa22da47bed40d4f9d40b555598cefce9156 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
object @account

attributes :id, :username, :acct, :display_name, :locked, :created_at

node(:note)            { |account| Formatter.instance.simplified_format(account) }
node(:url)             { |account| TagManager.instance.url_for(account) }
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