demarches-normaliennes/app/controllers/gestionnaires/gestionnaire_controller.rb

10 lines
185 B
Ruby
Raw Normal View History

module Gestionnaires
class GestionnaireController < ApplicationController
before_action :authenticate_gestionnaire!
def nav_bar_profile
:gestionnaire
end
end
end