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: 5c45f4d90e53981d49df18624c56955bc3753251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module WorkItems
  class UpdateService < ::Issues::UpdateService
    private

    def after_update(issuable)
      super

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