Class: ErrorsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ErrorsController
- Defined in:
- app/controllers/errors_controller.rb
Instance Method Summary collapse
Instance Method Details
#not_found ⇒ Object
2 3 4 5 6 7 |
# File 'app/controllers/errors_controller.rb', line 2 def not_found respond_to do |format| format.html { render template: 'errors/not_found', status: 404 } format.any { head 404 } end end |