11 lines
184 B
Ruby
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
|