demarches-normaliennes/app/models/groupe_instructeur.rb
2019-09-03 06:47:02 +02:00

7 lines
191 B
Ruby

class GroupeInstructeur < ApplicationRecord
DEFAULT_LABEL = 'défaut'
belongs_to :procedure
has_many :assign_tos
has_many :instructeurs, through: :assign_tos
has_many :dossiers
end