summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-11-11 13:01:06 -0800
committerelijah <elijah@riseup.net>2014-11-11 13:01:06 -0800
commitc8b9e7ac72d27997603dbede8001fca7d3f40e1a (patch)
treeeaf542a338e863182f1f884f635d6dad820c0111 /app/controllers
parentfec5cf6955898b170683677b172ac99a6475d491 (diff)
parent546aaa9f39b40a3f11670c805bb71e4ace7d0cc7 (diff)
Merge branch 'feature/error-tweaks' of https://github.com/azul/leap_web into develop
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/errors_controller.rb2
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