diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-01-02 13:56:31 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-01-02 15:36:59 +0100 |
commit | bb96a7463758687f8187ae4483becd346c2482b3 (patch) | |
tree | 348a9c54f0152a73fd7753de3bbe9fe02ab28fe2 /app/models | |
parent | 1b35ca17a9f214bbc4fc577baa7a86b567b2f629 (diff) |
Revert "Add handler for Move activity (#9629)"
This reverts commit 0f938ff29c2e9bf92e3eb9c23be8d4ba3a1b97f7.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 67d9a583e..722e47d65 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -44,7 +44,6 @@ # fields :jsonb # actor_type :string # discoverable :boolean -# also_known_as :string is an Array # class Account < ApplicationRecord @@ -233,10 +232,6 @@ class Account < ApplicationRecord end end - def also_known_as - self[:also_known_as] || [] - end - def fields (self[:fields] || []).map { |f| Field.new(self, f) } end |