bryceholcomb/rider_demand

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController
  def show
    @exception = env['action_dispatch.exception']
    render request.path[1..-1]
  end
end