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/federal_subject.rb

46 lines
872 B
Ruby

# frozen_string_literal: true
class FederalSubject < ApplicationRecord
##########
# Scopes #
##########
scope :order_by_display_name, lambda { |dir = :asc|
if I18n.locale == :ru
order(native_name: dir)
else
order(english_name: dir)
end
}
################
# Associations #
################
has_one :regional_office, dependent: :restrict_with_exception
###############
# Validations #
###############
validates :english_name, presence: true, uniqueness: true
validates :native_name, presence: true, uniqueness: true
validates :number,
presence: true,
uniqueness: true,
numericality: { only_integer: true, greater_than: 0 }
###########
# Methods #
###########
def display_name
if I18n.locale == :ru
native_name
else
english_name
end
end
end