diff options
author | elijah <elijah@riseup.net> | 2014-11-11 13:01:06 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-11-11 13:01:06 -0800 |
commit | c8b9e7ac72d27997603dbede8001fca7d3f40e1a (patch) | |
tree | eaf542a338e863182f1f884f635d6dad820c0111 /app | |
parent | fec5cf6955898b170683677b172ac99a6475d491 (diff) | |
parent | 546aaa9f39b40a3f11670c805bb71e4ace7d0cc7 (diff) |
Merge branch 'feature/error-tweaks' of https://github.com/azul/leap_web into develop
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/errors_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index 6c659e6..d869ab5 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -2,9 +2,11 @@ class ErrorsController < ApplicationController # 404 def not_found + render status: 404 end # 500 def server_error + render status: 500 end end |