Fix notifications in UI, added new API for fetching account relationships
This commit is contained in:
@ -1,2 +0,0 @@
|
||||
collection @accounts
|
||||
extends('api/accounts/show')
|
5
app/views/api/accounts/relationships.rabl
Normal file
5
app/views/api/accounts/relationships.rabl
Normal file
@ -0,0 +1,5 @@
|
||||
collection @accounts
|
||||
attribute :id
|
||||
node(:following) { |account| @following[account.id] || false }
|
||||
node(:followed_by) { |account| @followed_by[account.id] || false }
|
||||
node(:blocking) { |account| @blocking[account.id] || false }
|
@ -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) }
|
||||
|
Reference in New Issue
Block a user