diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/models/account.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 529334559..864b3cb6e 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -172,6 +172,10 @@ class Account < ApplicationRecord end class << self + def readonly_attributes + super - %w(statuses_count following_count followers_count) + end + def domains reorder(nil).pluck('distinct accounts.domain') end |