diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2016-04-18 10:58:40 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2016-04-18 10:58:40 +0200 |
commit | fdf6ca6c01ec54bf86ee72d5adbaf4ae3cff8483 (patch) | |
tree | 1c0e327d0647861a0d8800fde797c8f0ed4bbc83 /app/mailers | |
parent | d7a4a2fe7577f2ca17d28f10d312ed98d5253ae4 (diff) | |
download | gitlab-ce-fdf6ca6c01ec54bf86ee72d5adbaf4ae3cff8483.tar.gz |
Improve 'auto fsck' admin emails
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/repository_check_mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/repository_check_mailer.rb b/app/mailers/repository_check_mailer.rb index 2bff5b63cc4..21db2fe04a0 100644 --- a/app/mailers/repository_check_mailer.rb +++ b/app/mailers/repository_check_mailer.rb @@ -8,7 +8,7 @@ class RepositoryCheckMailer < BaseMailer mail( to: User.admins.pluck(:email), - subject: @message + subject: "GitLab Admin | #{@message}" ) end end |