mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 01:11:43 +02:00
10 lines
152 B
Ruby
10 lines
152 B
Ruby
class Registrar < ActiveRecord::Base
|
|
belongs_to :country
|
|
has_many :domains
|
|
has_many :ns_sets
|
|
has_many :epp_users
|
|
|
|
def to_s
|
|
name
|
|
end
|
|
end
|