summaryrefslogtreecommitdiff
path: root/app/workers/new_issue_worker.rb
blob: c08f4b4cd759d874dc4ba6fb8dee41c374881db1 (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
# frozen_string_literal: true

class NewIssueWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker
  include NewIssuable

  feature_category :issue_tracking
  urgency :high
  worker_resource_boundary :cpu
  weight 2

  def perform(issue_id, user_id)
    return unless objects_found?(issue_id, user_id)

    ::EventCreateService.new.open_issue(issuable, user)
    ::NotificationService.new.new_issue(issuable, user)

    issuable.create_cross_references!(user)

    Issues::AfterCreateService
      .new(issuable.project, user)
      .execute(issuable)
  end

  def issuable_class
    Issue
  end
end