10 lines
161 B
Ruby
10 lines
161 B
Ruby
|
module Experts
|
||
|
class ExpertController < ApplicationController
|
||
|
before_action :authenticate_expert!
|
||
|
|
||
|
def nav_bar_profile
|
||
|
:expert
|
||
|
end
|
||
|
end
|
||
|
end
|