akkounts/app/controllers/dashboard_controller.rb

8 lines
146 B
Ruby

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