Improving how the API responses look
This commit is contained in:
parent
ab6696e855
commit
ffe48fd7c6
3 changed files with 15 additions and 17 deletions
|
@ -2,8 +2,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 }
|
||||
node(:url) { |account| url_for_target(account) }
|
||||
node(:avatar) { |account| 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_user.account.following?(account) }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue