mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
8 lines
147 B
Ruby
8 lines
147 B
Ruby
class DomainContact < ActiveRecord::Base
|
|
belongs_to :contact
|
|
belongs_to :domain
|
|
|
|
TECH = 'tech'
|
|
ADMIN = 'admin'
|
|
TYPES = [TECH, ADMIN]
|
|
end
|