summaryrefslogtreecommitdiff
path: root/app/workers/todos_destroyer/confidential_issue_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/todos_destroyer/confidential_issue_worker.rb')
-rw-r--r--app/workers/todos_destroyer/confidential_issue_worker.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/workers/todos_destroyer/confidential_issue_worker.rb b/app/workers/todos_destroyer/confidential_issue_worker.rb
index 481fde8c83d..240a5f98ad5 100644
--- a/app/workers/todos_destroyer/confidential_issue_worker.rb
+++ b/app/workers/todos_destroyer/confidential_issue_worker.rb
@@ -5,8 +5,8 @@ module TodosDestroyer
include ApplicationWorker
include TodosDestroyerQueue
- def perform(issue_id)
- ::Todos::Destroy::ConfidentialIssueService.new(issue_id).execute
+ def perform(issue_id = nil, project_id = nil)
+ ::Todos::Destroy::ConfidentialIssueService.new(issue_id: issue_id, project_id: project_id).execute
end
end
end