retrospring/app/controllers/admin/dashboard_controller.rb
Andreas Nedbal c464e80e45 Fix lints
2022-11-21 20:26:01 +01:00

7 lines
146 B
Ruby

# frozen_string_literal: true
class Admin::DashboardController < ApplicationController
before_action :authenticate_user!
def index; end
end