diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-02-20 17:44:13 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-02-25 13:13:46 +0100 |
commit | 6afb03ee96a2f0c36e69a6da4e10dbe298c5b79f (patch) | |
tree | 7f57e5bb0636012bd29e31873f074046231ba043 /app/mailers | |
parent | 607f0c05feb2cde82493a36ac43ba5ecd6c71620 (diff) | |
download | gitlab-ce-6afb03ee96a2f0c36e69a6da4e10dbe298c5b79f.tar.gz |
Remove incorrect footer from EmailsOnPush body.
See #1754.
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/emails/projects.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/mailers/emails/projects.rb b/app/mailers/emails/projects.rb index f2e599ab28b..f3a2ae14d35 100644 --- a/app/mailers/emails/projects.rb +++ b/app/mailers/emails/projects.rb @@ -38,6 +38,8 @@ module Emails @subject << @commits.first.title end + @disable_footer = true + mail(from: sender(author_id), to: recipient, subject: @subject) |