13208: Refactor permission checking to improve query performance
[arvados.git] / services / api / lib / sweep_trashed_collections.rb
index 01b63fdb824f70a4fa24fe5791789be00c603922..a899191db014286c40ea2a5bca5373b3768e3191 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 require 'current_api_client'
 
 module SweepTrashedCollections
@@ -5,10 +9,10 @@ module SweepTrashedCollections
 
   def self.sweep_now
     act_as_system_user do
-      Collection.unscoped.
+      Collection.
         where('delete_at is not null and delete_at < statement_timestamp()').
         destroy_all
-      Collection.unscoped.
+      Collection.
         where('is_trashed = false and trash_at < statement_timestamp()').
         update_all('is_trashed = true')
     end