From ffe48fd7c6b970bc9b98bf999535e49572e82035 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 7 Mar 2016 12:52:25 +0100 Subject: Improving how the API responses look --- app/views/api/accounts/show.rabl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'app/views/api/accounts/show.rabl') diff --git a/app/views/api/accounts/show.rabl b/app/views/api/accounts/show.rabl index e4c4883c8..df70943dd 100644 --- a/app/views/api/accounts/show.rabl +++ b/app/views/api/accounts/show.rabl @@ -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) } -- cgit