chinwagsocial/app/views/api/accounts/show.rabl

11 lines
477 B
Plaintext
Raw Normal View History

object @account
attributes :id, :username, :acct, :display_name, :note
2016-03-07 22:52:25 +11:00
node(:url) { |account| url_for_target(account) }
node(:avatar) { |account| full_asset_url(account.avatar.url(:large, false)) }
2016-03-07 22:52:25 +11:00
node(:followers_count) { |account| account.followers.count }
node(:following_count) { |account| account.following.count }
node(:statuses_count) { |account| account.statuses.count }
2016-08-19 01:13:41 +10:00
node(:following) { |account| current_account.following?(account) }