mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
31 lines
594 B
Ruby
31 lines
594 B
Ruby
class DomainContact < ActiveRecord::Base
|
|
include EppErrors
|
|
belongs_to :contact
|
|
belongs_to :domain
|
|
|
|
def epp_code_map
|
|
{
|
|
'2302' => [
|
|
[:contact, :taken, {value: {obj: 'contact', val: contact.code}}]
|
|
]
|
|
}
|
|
end
|
|
|
|
TECH = 'tech'
|
|
ADMIN = 'admin'
|
|
TYPES = [TECH, ADMIN]
|
|
|
|
# TODO: Fix EPP problems
|
|
validates :contact, uniqueness: { scope: [:domain_id, :contact_type] }
|
|
|
|
scope :admin, -> { where(contact_type: ADMIN) }
|
|
scope :tech, -> { where(contact_type: TECH) }
|
|
|
|
def admin?
|
|
contact_type == ADMIN
|
|
end
|
|
|
|
def tech?
|
|
contact_type == TECH
|
|
end
|
|
end
|