demarches-normaliennes/app/controllers/users/user_controller.rb
2019-03-25 10:56:39 +01:00

9 lines
153 B
Ruby

module Users
class UserController < ApplicationController
before_action :authenticate_user!
def nav_bar_profile
:user
end
end
end