mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
13 lines
384 B
Ruby
13 lines
384 B
Ruby
class DomainTransfer < ActiveRecord::Base
|
|
belongs_to :domain
|
|
|
|
belongs_to :transfer_from, class_name: 'Registrar'
|
|
belongs_to :transfer_to, class_name: 'Registrar'
|
|
|
|
PENDING = 'pending'
|
|
CLIENT_APPROVED = 'clientApproved'
|
|
CLIENT_CANCELLED = 'clientCancelled'
|
|
CLIENT_REJECTED = 'clientRejected'
|
|
SERVER_APPROVED = 'serverApproved'
|
|
SERVER_CANCELLED = 'serverCancelled'
|
|
end
|