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

12 lines
192 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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