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

12 lines
185 B
Ruby
Raw Normal View History

module NewUser
class UserController < ApplicationController
layout "new_application"
before_action :authenticate_user!
def nav_bar_profile
:user
end
end
end