demarches-normaliennes/app/controllers/users/user_controller.rb
2024-08-22 09:26:48 +02:00

11 lines
184 B
Ruby

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