demarches-normaliennes/app/models/groupe_instructeur.rb

13 lines
420 B
Ruby
Raw Normal View History

2019-08-19 16:12:30 +02:00
class GroupeInstructeur < ApplicationRecord
DEFAULT_LABEL = 'défaut'
2019-08-19 16:12:30 +02:00
belongs_to :procedure
2019-08-20 16:47:41 +02:00
has_many :assign_tos
has_many :instructeurs, through: :assign_tos, dependent: :destroy
2019-08-22 17:58:31 +02:00
has_many :dossiers
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! }
2019-08-19 16:12:30 +02:00
end