2724f4667b
Fix #4282
7 lines
212 B
Ruby
7 lines
212 B
Ruby
class GroupeInstructeur < ApplicationRecord
|
|
DEFAULT_LABEL = 'défaut'
|
|
belongs_to :procedure
|
|
has_many :assign_tos
|
|
has_many :instructeurs, through: :assign_tos, dependent: :destroy
|
|
has_many :dossiers
|
|
end
|