Create DomainNormalizable#normalize_domain (#9631)
This commit is contained in:
parent
bf70e5cfda
commit
0c1e4bb969
4 changed files with 20 additions and 17 deletions
|
@ -59,6 +59,7 @@ class Account < ApplicationRecord
|
|||
include Attachmentable
|
||||
include Paginable
|
||||
include AccountCounters
|
||||
include DomainNormalizable
|
||||
|
||||
enum protocol: [:ostatus, :activitypub]
|
||||
|
||||
|
@ -457,7 +458,6 @@ class Account < ApplicationRecord
|
|||
end
|
||||
|
||||
before_create :generate_keys
|
||||
before_validation :normalize_domain
|
||||
before_validation :prepare_contents, if: :local?
|
||||
before_destroy :clean_feed_manager
|
||||
|
||||
|
@ -479,7 +479,7 @@ class Account < ApplicationRecord
|
|||
def normalize_domain
|
||||
return if local?
|
||||
|
||||
self.domain = TagManager.instance.normalize_domain(domain)
|
||||
super
|
||||
end
|
||||
|
||||
def emojifiable_text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue