Create DomainNormalizable#normalize_domain (#9631)
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
#
|
||||
|
||||
class EmailDomainBlock < ApplicationRecord
|
||||
before_validation :normalize_domain
|
||||
include DomainNormalizable
|
||||
|
||||
validates :domain, presence: true, uniqueness: true
|
||||
|
||||
@ -27,10 +27,4 @@ class EmailDomainBlock < ApplicationRecord
|
||||
|
||||
where(domain: domain).exists?
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def normalize_domain
|
||||
self.domain = TagManager.instance.normalize_domain(domain)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user