demarches-normaliennes/app/models/groupe_instructeur.rb

17 lines
662 B
Ruby
Raw Normal View History

2019-08-19 16:12:30 +02:00
class GroupeInstructeur < ApplicationRecord
DEFAULT_LABEL = 'défaut'
belongs_to :procedure, -> { with_discarded }, inverse_of: :groupe_instructeurs
2020-06-11 10:08:04 +02:00
has_many :assign_tos, dependent: :destroy
has_many :instructeurs, through: :assign_tos
2019-08-22 17:58:31 +02:00
has_many :dossiers
has_and_belongs_to_many :exports, dependent: :destroy
2019-10-09 18:05:43 +02:00
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]) }
2019-08-19 16:12:30 +02:00
end