11 lines
217 B
Ruby
11 lines
217 B
Ruby
module NewGestionnaire
|
|
class GestionnaireController < ApplicationController
|
|
layout "new_application"
|
|
|
|
before_action :authenticate_gestionnaire!
|
|
|
|
def nav_bar_profile
|
|
:gestionnaire
|
|
end
|
|
end
|
|
end
|