summaryrefslogtreecommitdiff
path: root/app/mailers
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-02-11 15:08:10 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-02-12 14:01:27 +0100
commitc9f202b2efdecda2e9fa5290ba5de413ab345a7d (patch)
treebc9dd9fe972d1ea34aa19c3e08307daed18ad8f0 /app/mailers
parentb1dda8145433f15fcea683451c9c79927b19352e (diff)
downloadgitlab-ce-c9f202b2efdecda2e9fa5290ba5de413ab345a7d.tar.gz
Fix broken link in CI build notification emails
Closes #13199
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/emails/builds.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/app/mailers/emails/builds.rb b/app/mailers/emails/builds.rb
index 64c1ce8cfab..2f86d1be576 100644
--- a/app/mailers/emails/builds.rb
+++ b/app/mailers/emails/builds.rb
@@ -3,26 +3,27 @@ module Emails
def build_fail_email(build_id, to)
@build = Ci::Build.find(build_id)
@project = @build.project
+
add_project_headers
- add_build_headers
- headers['X-GitLab-Build-Status'] = "failed"
+ add_build_headers('failed')
mail(to: to, subject: subject("Build failed for #{@project.name}", @build.short_sha))
end
def build_success_email(build_id, to)
@build = Ci::Build.find(build_id)
@project = @build.project
+
add_project_headers
- add_build_headers
- headers['X-GitLab-Build-Status'] = "success"
+ add_build_headers('success')
mail(to: to, subject: subject("Build success for #{@project.name}", @build.short_sha))
end
private
- def add_build_headers
+
+ def add_build_headers(status)
headers['X-GitLab-Build-Id'] = @build.id
headers['X-GitLab-Build-Ref'] = @build.ref
+ headers['X-GitLab-Build-Status'] = status.to_s
end
-
end
end