about summary refs log tree commit diff
path: root/app/views/api/v1/accounts/relationship.rabl
blob: 84043e9cd35a4a2f9d6a53205bf1bd20cc2d137e (plain) (blame)
1
2
3
4
5
6
object @account

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 }