2017-06-29 15:29:48 +02:00
|
|
|
module NewGestionnaire
|
|
|
|
class GestionnaireController < ApplicationController
|
2017-07-31 10:40:20 +02:00
|
|
|
layout "new_application"
|
|
|
|
|
2017-06-29 15:29:48 +02:00
|
|
|
before_action :authenticate_gestionnaire!
|
2018-02-12 16:26:56 +01:00
|
|
|
|
|
|
|
def nav_bar_profile
|
|
|
|
:gestionnaire
|
|
|
|
end
|
2017-06-29 15:29:48 +02:00
|
|
|
end
|
|
|
|
end
|