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

attributes :id, :username, :acct, :display_name, :note

node(:url)             { |account| TagManager.instance.url_for(account) }
node(:avatar)          { |account| full_asset_url(account.avatar.url(:large, false)) }
node(:followers_count) { |account| account.followers.count }
node(:following_count) { |account| account.following.count }
node(:statuses_count)  { |account| account.statuses.count  }
node(:following)       { |account| current_account.following?(account) }