kaize/deadline_camp

View on GitHub
app/controllers/web/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Web::ErrorsController < Web::ApplicationController
  def not_found
    render :status => 404
  end

  def internal_server_error
    render :status => 500
  end
end