Retrospring/app/controllers/admin/dashboard_controller.rb

6 lines
115 B
Ruby
Raw Normal View History

2022-11-20 08:58:44 -08:00
class Admin::DashboardController < ApplicationController
before_action :authenticate_user!
def index; end
end