diff options
author | Fu Xu <fuxu@fuxu.name> | 2016-09-02 16:57:08 +0800 |
---|---|---|
committer | Fu Xu <fuxu@fuxu.name> | 2016-10-03 18:07:28 +0800 |
commit | 74c8e091f40c29a59b99bf7864b9fee303c68e50 (patch) | |
tree | 48d65f3bad5d39656840526ef1720ee1e93335de /app/mailers | |
parent | 7134599860651cc0f502581c97853a26f2fb4471 (diff) | |
download | gitlab-ce-74c8e091f40c29a59b99bf7864b9fee303c68e50.tar.gz |
add configurable email subject suffix
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/notify.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/mailers/notify.rb b/app/mailers/notify.rb index 29f1c527776..1321b42ddf4 100644 --- a/app/mailers/notify.rb +++ b/app/mailers/notify.rb @@ -92,6 +92,7 @@ class Notify < BaseMailer subject = "" subject << "#{@project.name} | " if @project subject << extra.join(' | ') if extra.present? + subject << " | #{Gitlab.config.gitlab.email_subject_suffix}" if Gitlab.config.gitlab.email_subject_suffix.length > 0 subject end |