mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 10:19:45 +02:00
8 lines
204 B
Ruby
8 lines
204 B
Ruby
class Keyrelay < ActiveRecord::Base
|
|
belongs_to :domain
|
|
|
|
belongs_to :requester, class_name: 'Registrar'
|
|
belongs_to :accepter, class_name: 'Registrar'
|
|
|
|
delegate :name, to: :domain, prefix: true
|
|
end
|