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

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

node(:url)       { |account| url_for_target(account) }
node(:avatar)    { |account| asset_url(account.avatar.url(:large, false)) }
node(:followers) { |account| account.followers.count }
node(:following) { |account| account.following.count }
node(:statuses)  { |account| account.statuses.count  }