refactor(routing): add groupe_instructeur helper
This commit is contained in:
parent
8b832396a3
commit
16565d099a
1 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,7 @@ module Administrateurs
|
||||||
left = champ_value(targeted_champ)
|
left = champ_value(targeted_champ)
|
||||||
right = parsed_value
|
right = parsed_value
|
||||||
|
|
||||||
@procedure.groupe_instructeurs.find(groupe_instructeur_id).update!(routing_rule: ds_eq(left, right))
|
groupe_instructeur.update!(routing_rule: ds_eq(left, right))
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
@ -27,6 +27,10 @@ module Administrateurs
|
||||||
term.presence || constant(value)
|
term.presence || constant(value)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def groupe_instructeur
|
||||||
|
@groupe_instructeur ||= @procedure.groupe_instructeurs.find(groupe_instructeur_id)
|
||||||
|
end
|
||||||
|
|
||||||
def groupe_instructeur_id
|
def groupe_instructeur_id
|
||||||
routing_params[:groupe_instructeur_id]
|
routing_params[:groupe_instructeur_id]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue