mirror of
https://github.com/internetee/registry.git
synced 2025-07-21 10:16:01 +02:00
6 lines
136 B
Ruby
6 lines
136 B
Ruby
class DomainContact < ActiveRecord::Base
|
|
belongs_to :contact
|
|
belongs_to :domain
|
|
|
|
scope :tech, -> {where(contact_type: :tech)}
|
|
end
|