demarches-normaliennes/app/controllers/users/user_controller.rb

10 lines
153 B
Ruby
Raw Normal View History

2019-03-25 10:53:45 +01:00
module Users
class UserController < ApplicationController
before_action :authenticate_user!
def nav_bar_profile
:user
end
end
end