diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2016-09-01 02:21:24 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2016-09-01 02:21:24 +0800 |
commit | 5de54a7137ee6de121e5c3477b4901a183b01762 (patch) | |
tree | 691c7e616afa0b838d6ebfb9775cfbf0a0586c6d /app/mailers | |
parent | be414d4829463708e23b639fea9e6fe88863b1c5 (diff) | |
download | gitlab-ce-5de54a7137ee6de121e5c3477b4901a183b01762.tar.gz |
no longer TODO
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/emails/pipelines.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/mailers/emails/pipelines.rb b/app/mailers/emails/pipelines.rb index 7c181d2e366..643b947a049 100644 --- a/app/mailers/emails/pipelines.rb +++ b/app/mailers/emails/pipelines.rb @@ -1,11 +1,11 @@ module Emails module Pipelines def pipeline_succeeded_email(params, to) - pipeline_mail(params, to, 'succeeded') # TODO: missing template + pipeline_mail(params, to, 'succeeded') end def pipeline_failed_email(params, to) - pipeline_mail(params, to, 'failed') # TODO: missing template + pipeline_mail(params, to, 'failed') end private |