0
0
Fork 0

Fix crash when saving invalid domain name (#11528)

Fix #7629
This commit is contained in:
Eugen Rochko 2019-08-08 23:04:19 +02:00 committed by GitHub
parent 699db454c3
commit 7a1f8a58df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 24 additions and 5 deletions

View file

@ -15,7 +15,7 @@ class AccountDomainBlock < ApplicationRecord
include DomainNormalizable
belongs_to :account
validates :domain, presence: true, uniqueness: { scope: :account_id }
validates :domain, presence: true, uniqueness: { scope: :account_id }, domain: true
after_commit :remove_blocking_cache
after_commit :remove_relationship_cache