You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
610 B

  1. object @account
  2. cache
  3. attributes :id, :username, :acct, :display_name, :note
  4. node(:url) { |account| TagManager.instance.url_for(account) }
  5. node(:avatar) { |account| full_asset_url(account.avatar.url(:large, false)) }
  6. node(:header) { |account| full_asset_url(account.header.url(:medium, false)) }
  7. node(:followers_count) { |account| account.try(:followers_count) || account.followers.count }
  8. node(:following_count) { |account| account.try(:following_count) || account.following.count }
  9. node(:statuses_count) { |account| account.try(:statuses_count) || account.statuses.count }