1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/org_unit_kind.rb
2019-10-01 03:20:45 +05:00

40 lines
870 B
Ruby

# frozen_string_literal: true
class OrgUnitKind < ApplicationRecord
################
# Associations #
################
belongs_to :parent_kind,
class_name: 'OrgUnitKind',
inverse_of: :children_kinds,
optional: true
has_many :children_kinds,
class_name: 'OrgUnitKind',
inverse_of: :parent_kind,
foreign_key: :parent_kind_id
has_many :instances,
class_name: 'OrgUnit',
inverse_of: :kind,
foreign_key: :kind_id
###############
# Validations #
###############
validates :codename, codename: true, uniqueness: { case_sensitive: false }
validates :short_name, good_small_text: true, uniqueness: true
validates :name, good_small_text: true, uniqueness: true
###########
# Methods #
###########
def to_param
codename
end
end