akkounts/app/controllers/dashboard_controller.rb
2022-02-21 11:03:43 -06:00

8 lines
147 B
Ruby

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