seyhunak/log_exceptions

View on GitHub
app/controllers/log_exceptions/exceptions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_dependency "log_exceptions/application_controller"

module LogExceptions
  class ExceptionsController < ApplicationController
    def index
      @title      = "Exceptions"
      @exceptions = Exception.recent
    end
  end
end