38 lines
784 B
Ruby
38 lines
784 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Person < ApplicationRecord
|
|
include Nameable
|
|
|
|
################
|
|
# Associations #
|
|
################
|
|
|
|
belongs_to :contacts_list
|
|
|
|
has_one :account
|
|
|
|
has_many :all_relationships,
|
|
-> { order(from_date: :asc) },
|
|
class_name: 'Relationship',
|
|
inverse_of: :person
|
|
|
|
has_one :current_relationship,
|
|
-> { order(from_date: :desc) },
|
|
class_name: 'Relationship',
|
|
inverse_of: :person
|
|
|
|
has_one :current_regional_office,
|
|
inverse_of: :all_people,
|
|
through: :current_relationship,
|
|
source: :regional_office
|
|
|
|
has_many :person_comments
|
|
|
|
has_many :passports
|
|
|
|
###############
|
|
# Validations #
|
|
###############
|
|
|
|
validates :contacts_list, uniqueness: true
|
|
end
|