osem-fcy/config/initializers/domain_constraint.rb

7 lines
176 B
Ruby
Raw Normal View History

class DomainConstraint
def self.matches?(request)
domains = Conference.where.not(custom_domain: nil).pluck(:custom_domain)
domains.include?(request.domain)
end
end