]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/changesets_controller.rb
Move api error handling and timeouts to parent class
[rails.git] / app / controllers / api / changesets_controller.rb
index 3d59eeb171e4232c70d5fe1b68dc5252a6d4de2b..9111bb609d27d91753d3b6b46a6ee7ae59954eae 100644 (file)
@@ -11,8 +11,7 @@ module Api
     before_action :require_public_data, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
     before_action :set_request_formats, :except => [:create, :close, :upload]
 
-    around_action :api_call_handle_error
-    around_action :api_call_timeout, :except => [:upload]
+    skip_around_action :api_call_timeout, :only => [:upload]
 
     # Helper methods for checking consistency
     include ConsistencyValidations