summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/users.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/users.rake')
-rw-r--r--lib/tasks/gitlab/users.rake11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/tasks/gitlab/users.rake b/lib/tasks/gitlab/users.rake
deleted file mode 100644
index 3a16ace60bd..00000000000
--- a/lib/tasks/gitlab/users.rake
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace :gitlab do
- namespace :users do
- desc "GitLab | Clear the authentication token for all users"
- task clear_all_authentication_tokens: :environment do |t, args|
- # Do small batched updates because these updates will be slow and locking
- User.select(:id).find_in_batches(batch_size: 100) do |batch|
- User.where(id: batch.map(&:id)).update_all(authentication_token: nil)
- end
- end
- end
-end