Class: ErrorsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ErrorsController
- Defined in:
- lib/generators/error_pages/templates/errors_controller.rb
Instance Method Summary collapse
Instance Method Details
#not_found ⇒ Object
2 3 4 |
# File 'lib/generators/error_pages/templates/errors_controller.rb', line 2 def not_found render :status => 404, :formats => [:html] end |
#server_error ⇒ Object
6 7 8 |
# File 'lib/generators/error_pages/templates/errors_controller.rb', line 6 def server_error render :status => 500, :formats => [:html] end |