demarches-normaliennes/app/controllers/instructeurs/instructeur_controller.rb

10 lines
181 B
Ruby
Raw Normal View History

module Instructeurs
class InstructeurController < ApplicationController
before_action :authenticate_instructeur!
def nav_bar_profile
:instructeur
end
end
end