summaryrefslogtreecommitdiff
path: root/app/services/work_items/update_service.rb
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