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
7 changed files with 24 additions and 5 deletions

View File

@ -13,7 +13,7 @@
class DomainAllow < ApplicationRecord
include DomainNormalizable
validates :domain, presence: true, uniqueness: true
validates :domain, presence: true, uniqueness: true, domain: true
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }