summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/api.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/api.rb b/lib/api.rb
index f58b82ff98e..3dd827158db 100644
--- a/lib/api.rb
+++ b/lib/api.rb
@@ -8,6 +8,10 @@ module Gitlab
rack_response({'message' => '404 Not found'}.to_json, 404)
end
+ rescue_from :all do
+ rack_response({'message' => '500 Internal Server Error'}, 500)
+ end
+
format :json
error_format :json
helpers APIHelpers