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

8 lines
142 B
Ruby

class DashboardController < ApplicationController
before_action :authenticate_user!
def index
@current_section = :services
end
end