demarches-normaliennes/app/controllers/experts/expert_controller.rb

10 lines
161 B
Ruby
Raw Normal View History

2021-02-09 10:24:13 +01:00
module Experts
class ExpertController < ApplicationController
before_action :authenticate_expert!
def nav_bar_profile
:expert
end
end
end