Create DomainNormalizable#normalize_domain (#9631)
This commit is contained in:
parent
bf70e5cfda
commit
0c1e4bb969
4 changed files with 20 additions and 17 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue