demarches-normaliennes/app/controllers/experts/expert_controller.rb
2024-08-22 09:26:48 +02:00

11 lines
192 B
Ruby

# frozen_string_literal: true
module Experts
class ExpertController < ApplicationController
before_action :authenticate_expert!
def nav_bar_profile
:expert
end
end
end