about summary refs log tree commit diff
path: root/app/views/api/v1/accounts/relationship.rabl
blob: 4f634877f737a9d06edcc56c220f3d36e2192487 (plain) (blame)
1
2
3
4
5
6
object @account
cache false
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 }