gitlab-org--gitlab-foss/app/mailers/emails/auto_devops.rb

23 lines
481 B
Ruby

# frozen_string_literal: true
module Emails
module AutoDevops
def autodevops_disabled_email(pipeline, recipient)
@pipeline = pipeline
@project = pipeline.project
add_project_headers
email_with_layout(
to: recipient,
subject: auto_devops_disabled_subject(@project.name))
end
private
def auto_devops_disabled_subject(project_name)
subject("Auto DevOps pipeline was disabled for #{project_name}")
end
end
end