scottwillson/racing_on_rails

View on GitHub
app/controllers/admin/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Admin
  # Just redirect to admin events index
  class HomeController < Admin::AdminController
    def index
      flash.keep
      redirect_to admin_events_path
    end
  end
end