diff options
author | Felipe Artur <felipefac@gmail.com> | 2016-07-12 18:19:47 -0300 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2016-07-15 20:38:27 -0300 |
commit | 2e9d53586874a83cea7e7d29a49bde1180e15829 (patch) | |
tree | 8118f6c65c9b610f143e34f8b6a1e8f252065ec4 /app/mailers | |
parent | 2d96c66d63d480f24fd023fe73bf95e67d5ad257 (diff) | |
download | gitlab-ce-2e9d53586874a83cea7e7d29a49bde1180e15829.tar.gz |
Allow build email service to be testedissue_13343
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/emails/builds.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/mailers/emails/builds.rb b/app/mailers/emails/builds.rb index 2f86d1be576..3853af6201a 100644 --- a/app/mailers/emails/builds.rb +++ b/app/mailers/emails/builds.rb @@ -6,6 +6,7 @@ module Emails add_project_headers add_build_headers('failed') + mail(to: to, subject: subject("Build failed for #{@project.name}", @build.short_sha)) end |