mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
5 lines
239 B
Ruby
5 lines
239 B
Ruby
# Used in Registrant portal to collect registrant verifications
|
|
# Registrant postgres user can access this table directly.
|
|
class RegistrantVerification < ActiveRecord::Base
|
|
validates :verification_token, :domain_name, presence: true
|
|
end
|