module Comee module Core class Agent < ApplicationRecord belongs_to :country, -> { where(lookup_type: :country) }, class_name: "Comee::Core::Lookup" validates :name, :email, :telephone, presence: true end end end