9 lines
185 B
Ruby
9 lines
185 B
Ruby
module Gestionnaires
|
|
class GestionnaireController < ApplicationController
|
|
before_action :authenticate_gestionnaire!
|
|
|
|
def nav_bar_profile
|
|
:gestionnaire
|
|
end
|
|
end
|
|
end
|