demarches-normaliennes/app/models/groupe_instructeur.rb

8 lines
191 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
2019-08-22 17:58:31 +02:00
has_many :dossiers
2019-08-19 16:12:30 +02:00
end