summaryrefslogtreecommitdiff
path: root/app/workers/new_issue_worker.rb
blob: 3bc030f9c620fa94e9635590136097f2c5d6043d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class NewIssueWorker
  include ApplicationWorker
  include NewIssuable

  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)
  end

  def issuable_class
    Issue
  end
end