26 lines
971 B
Ruby
26 lines
971 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: groupe_instructeurs
|
|
#
|
|
# id :bigint not null, primary key
|
|
# label :text not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# procedure_id :bigint not null
|
|
#
|
|
class GroupeInstructeur < ApplicationRecord
|
|
DEFAULT_LABEL = 'défaut'
|
|
belongs_to :procedure, -> { with_discarded }, inverse_of: :groupe_instructeurs, optional: false
|
|
has_many :assign_tos, dependent: :destroy
|
|
has_many :instructeurs, through: :assign_tos
|
|
has_many :dossiers
|
|
has_and_belongs_to_many :exports, dependent: :destroy
|
|
|
|
validates :label, presence: { message: 'doit être renseigné' }, allow_nil: false
|
|
validates :label, uniqueness: { scope: :procedure, message: 'existe déjà' }
|
|
|
|
before_validation -> { label&.strip! }
|
|
|
|
scope :without_group, -> (group) { where.not(id: group) }
|
|
scope :for_api_v2, -> { includes(procedure: [:administrateurs]) }
|
|
end
|