]> git.openstreetmap.org Git - rails.git/commitdiff
Remove duplicate database status checks
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 29 May 2024 13:50:48 +0000 (14:50 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 29 May 2024 13:51:20 +0000 (14:51 +0100)
These are already done as part of the api checks

app/controllers/api/traces_controller.rb

index 956bcde6e82dccabb23e022919d0d87673e74ec3..d9b5bce258409b70501fd1033d4288d49ef8c688 100644 (file)
@@ -1,14 +1,12 @@
 module Api
   class TracesController < ApiController
-    before_action :check_database_readable, :except => [:show, :data]
-    before_action :check_database_writable, :only => [:create, :update, :destroy]
+    before_action :check_api_readable, :only => [:show, :data]
+    before_action :check_api_writable, :only => [:create, :update, :destroy]
     before_action :set_locale
     before_action :authorize
 
     authorize_resource
 
-    before_action :check_api_readable, :only => [:show, :data]
-    before_action :check_api_writable, :only => [:create, :update, :destroy]
     before_action :offline_error, :only => [:create, :destroy, :data]
     around_action :api_call_handle_error