diff --git a/app/models/contact.rb b/app/models/contact.rb index 79a0e29c0..b1e1e568d 100644 --- a/app/models/contact.rb +++ b/app/models/contact.rb @@ -39,10 +39,14 @@ class Contact < ActiveRecord::Base scope :current_registrars, ->(id) { where(registrar_id: id) } BIC = 'bic' + PRIV = 'priv' + BIRTHDAY = 'birthday' + PASSPORT = 'passport' + IDENT_TYPES = [ - BIC, # Company registry code (or similar) - 'priv', # National idendtification number - 'birthday' # Birthday date + BIC, # Company registry code (or similar) + PRIV, # National idendtification number + BIRTHDAY # Birthday date ] class << self