In the notification e-mail to the user that a shell account has been created,
authorWard Vandewege <wvandewege@veritasgenetics.com>
Wed, 7 Nov 2018 15:58:36 +0000 (10:58 -0500)
committerWard Vandewege <wvandewege@veritasgenetics.com>
Tue, 13 Nov 2018 13:24:28 +0000 (08:24 -0500)
change the title of the e-mail to mention Arvados instead of Curoverse.

No issue #

Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege@veritasgenetics.com>

services/api/app/mailers/user_notifier.rb

index 35a19b136cc3298892a550d55c800bdcbda48657..5fb7036bf2596acb8425c2e6695b8a63ad259da8 100644 (file)
@@ -9,7 +9,7 @@ class UserNotifier < ActionMailer::Base
 
   def account_is_setup(user)
     @user = user
-    mail(to: user.email, subject: 'Welcome to Curoverse - shell account enabled')
+    mail(to: user.email, subject: 'Welcome to Arvados - shell account enabled')
   end
 
 end