akkounts/app/controllers/account_controller.rb
2023-05-31 12:00:02 +02:00

8 lines
139 B
Ruby

class AccountController < ApplicationController
before_action :authenticate_user!
def index
@current_section = :account
end
end