Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/todos_destroyer/private_features_worker.rb')
-rw-r--r--app/workers/todos_destroyer/private_features_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/todos_destroyer/private_features_worker.rb b/app/workers/todos_destroyer/private_features_worker.rb
index 150e1c8a50e..09e81216aab 100644
--- a/app/workers/todos_destroyer/private_features_worker.rb
+++ b/app/workers/todos_destroyer/private_features_worker.rb
@@ -10,7 +10,7 @@ module TodosDestroyer
include TodosDestroyerQueue
def perform(project_id, user_id = nil)
- ::Todos::Destroy::PrivateFeaturesService.new(project_id, user_id).execute
+ ::Todos::Destroy::UnauthorizedFeaturesService.new(project_id, user_id).execute
end
end
end