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

36 lines
749 B
Ruby
Raw Normal View History

2019-09-30 12:33:05 -04:00
# 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
###############
# 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