Improving how the API responses look
This commit is contained in:
parent
ab6696e855
commit
ffe48fd7c6
3 changed files with 15 additions and 17 deletions
|
@ -4,6 +4,7 @@ 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(: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) }
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
object @follow
|
||||
|
||||
child :target_account => :target_account do
|
||||
extends('api/accounts/show')
|
||||
end
|
||||
object @follow.target_account
|
||||
extends('api/accounts/show')
|
||||
|
|
|
@ -4,8 +4,8 @@ attributes :id, :created_at, :in_reply_to_id
|
|||
node(:uri) { |status| uri_for_target(status) }
|
||||
node(:content) { |status| status.local? ? linkify(status) : status.content }
|
||||
node(:url) { |status| url_for_target(status) }
|
||||
node(:reblogs) { |status| status.reblogs.count }
|
||||
node(:favourites) { |status| status.favourites.count }
|
||||
node(:reblogs_count) { |status| status.reblogs.count }
|
||||
node(:favourites_count) { |status| status.favourites.count }
|
||||
node(:favourited) { |status| current_user.account.favourited?(status) }
|
||||
node(:reblogged) { |status| current_user.account.reblogged?(status) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue