2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-02 18:15:03 +02:00
|
|
|
module TableauDeBordHelper
|
|
|
|
def tableau_de_bord_helper_path
|
|
|
|
if current_administrateur.present?
|
|
|
|
admin_procedures_path
|
2019-08-06 11:02:54 +02:00
|
|
|
elsif current_instructeur.present?
|
|
|
|
instructeur_procedures_path
|
2019-07-02 18:15:03 +02:00
|
|
|
else
|
|
|
|
dossiers_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|