gitlab-org--gitlab-foss/app/workers/pipeline_notification_worke...

15 lines
322 B
Ruby

# frozen_string_literal: true
class PipelineNotificationWorker
include ApplicationWorker
include PipelineQueue
def perform(pipeline_id, recipients = nil)
pipeline = Ci::Pipeline.find_by(id: pipeline_id)
return unless pipeline
NotificationService.new.pipeline_finished(pipeline, recipients)
end
end