Retrospring/app/controllers/admin/dashboard_controller.rb

8 lines
146 B
Ruby
Raw Normal View History

2022-11-20 10:22:29 -08:00
# frozen_string_literal: true
2022-11-20 08:58:44 -08:00
class Admin::DashboardController < ApplicationController
before_action :authenticate_user!
def index; end
end