debian-mirror-gitlab/app/workers/pipeline_notification_worker.rb

13 lines
291 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class PipelineNotificationWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2017-08-17 22:00:37 +05:30
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