The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

8 linhas
299 B

  1. object @account
  2. attribute :id
  3. node(:following) { |account| @following[account.id] || false }
  4. node(:followed_by) { |account| @followed_by[account.id] || false }
  5. node(:blocking) { |account| @blocking[account.id] || false }
  6. node(:requested) { |account| @requested[account.id] || false }