diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-21 22:07:18 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-21 22:07:18 +0200 |
commit | e46abc71cad590c2113247d41feca80d27a557b0 (patch) | |
tree | 7c7947aa82231a1d28fd2240a689ca057550ea1d /app/views/api/accounts/show.rabl | |
parent | 4bec613897d8835bb78202c7a36691b654f14967 (diff) |
Fix notifications in UI, added new API for fetching account relationships
Diffstat (limited to 'app/views/api/accounts/show.rabl')
-rw-r--r-- | app/views/api/accounts/show.rabl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/views/api/accounts/show.rabl b/app/views/api/accounts/show.rabl index 5af295c54..4f6a3ff99 100644 --- a/app/views/api/accounts/show.rabl +++ b/app/views/api/accounts/show.rabl @@ -8,4 +8,3 @@ node(:header) { |account| full_asset_url(account.header.url(:medium, fa 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_account.following?(account) } |