debian-mirror-gitlab/app/models/concerns/work_item_resource_event.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.3 KiB
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# frozen_string_literal: true
module WorkItemResourceEvent
extend ActiveSupport::Concern
included do
belongs_to :work_item, foreign_key: 'issue_id'
2023-04-23 21:23:45 +05:30
scope :with_work_item, -> { preload(:work_item) }
# These events are created also on non work items, e.g. MRs, Epic however system notes subscription
# is only implemented on work items, so we do check if this event is linked to an work item. This can be
# expanded to other issuables later on.
after_commit :trigger_note_subscription_create, on: :create, if: -> { work_item.present? }
end
# System notes are not updated or deleted, so firing just the noteCreated event.
def trigger_note_subscription_create(events: self)
GraphqlTriggers.work_item_note_created(work_item.to_gid, events)
2023-03-17 16:20:25 +05:30
end
def work_item_synthetic_system_note(events: nil)
# System notes for label resource events are handled in batches, so that we have single system note for multiple
# label changes.
if is_a?(ResourceLabelEvent) && events.present?
return synthetic_note_class.from_events(events, resource: work_item, resource_parent: work_item.project)
end
synthetic_note_class.from_event(self, resource: work_item, resource_parent: work_item.project)
end
def synthetic_note_class
raise NoMethodError, 'must implement `synthetic_note_class` method'
end
end