Disable error page for development

This commit is contained in:
wvengen 2015-09-05 15:04:34 +02:00
parent 67a885ca9d
commit 77ee8ee2f1
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
if Rails.env.production? || Rails.env.staging? || true
if Rails.env.production? || Rails.env.staging?
Gaffe.configure do |config|
config.errors_controller = 'ErrorsController'
end