summaryrefslogtreecommitdiff
path: root/app/services/ci/send_pipeline_notification_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/ci/send_pipeline_notification_service.rb')
-rw-r--r--app/services/ci/send_pipeline_notification_service.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/services/ci/send_pipeline_notification_service.rb b/app/services/ci/send_pipeline_notification_service.rb
new file mode 100644
index 00000000000..ceb182801f7
--- /dev/null
+++ b/app/services/ci/send_pipeline_notification_service.rb
@@ -0,0 +1,19 @@
+module Ci
+ class SendPipelineNotificationService
+ attr_reader :pipeline
+
+ def initialize(new_pipeline)
+ @pipeline = new_pipeline
+ end
+
+ def execute(recipients)
+ email_template = "pipeline_#{pipeline.status}_email"
+
+ return unless Notify.respond_to?(email_template)
+
+ recipients.each do |to|
+ Notify.public_send(email_template, pipeline, to).deliver_later
+ end
+ end
+ end
+end