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

update_service.rb « work_items « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b420881b4bb4f88bc75486a3cb293473474349d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

module WorkItems
  class UpdateService < ::Issues::UpdateService
    def initialize(project:, current_user: nil, params: {}, spam_params: nil, widget_params: {})
      super(project: project, current_user: current_user, params: params, spam_params: nil)

      @widget_params = widget_params
    end

    private

    def update(work_item)
      execute_widgets(work_item: work_item, callback: :update)

      super
    end

    def after_update(work_item)
      super

      GraphqlTriggers.issuable_title_updated(work_item) if work_item.previous_changes.key?(:title)
    end

    def execute_widgets(work_item:, callback:)
      work_item.widgets.each do |widget|
        widget.try(callback, params: @widget_params[widget.class.api_symbol])
      end
    end
  end
end