summaryrefslogtreecommitdiff
path: root/app/services/work_items/update_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/work_items/update_service.rb')
-rw-r--r--app/services/work_items/update_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/work_items/update_service.rb b/app/services/work_items/update_service.rb
index 1351445f6f3..d4acadbc851 100644
--- a/app/services/work_items/update_service.rb
+++ b/app/services/work_items/update_service.rb
@@ -4,10 +4,10 @@ module WorkItems
class UpdateService < ::Issues::UpdateService
include WidgetableService
- def initialize(project:, current_user: nil, params: {}, spam_params: nil, widget_params: {})
+ def initialize(container:, current_user: nil, params: {}, spam_params: nil, widget_params: {})
params[:widget_params] = true if widget_params.present?
- super(project: project, current_user: current_user, params: params, spam_params: nil)
+ super(container: container, current_user: current_user, params: params, spam_params: spam_params)
@widget_params = widget_params
end