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

13 lines
289 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class PipelineNotificationWorker
include Sidekiq::Worker
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