retrospring/app/controllers/admin/dashboard_controller.rb

8 lines
146 B
Ruby
Raw Normal View History

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