BathHacked/energy-sparks

View on GitHub
app/controllers/admin/reports/recent_audits_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Admin
  module Reports
    class RecentAuditsController < AdminController
      def index
        @recent_audits = Audit.all.order(created_at: :desc)
      end
    end
  end
end