blob: d6f1dd48ab6bebcb0e547202c42e6ed71fd95d99 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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 }
node(:muting) { |account| @muting[account.id] || false }
node(:requested) { |account| @requested[account.id] || false }
|