Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/mailers/emails/profile.rb')
-rw-r--r--app/mailers/emails/profile.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/mailers/emails/profile.rb b/app/mailers/emails/profile.rb
deleted file mode 100644
index 3a83b083109..00000000000
--- a/app/mailers/emails/profile.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-module Emails
- module Profile
- def new_user_email(user_id, token = nil)
- @current_user = @user = User.find(user_id)
- @target_url = user_url(@user)
- @token = token
- mail(to: @user.notification_email, subject: subject("Account was created for you"))
- end
-
- def new_email_email(email_id)
- @email = Email.find(email_id)
- @current_user = @user = @email.user
- mail(to: @user.notification_email, subject: subject("Email was added to your account"))
- end
-
- def new_ssh_key_email(key_id)
- @key = Key.find(key_id)
- @current_user = @user = @key.user
- @target_url = user_url(@user)
- mail(to: @user.notification_email, subject: subject("SSH key was added to your account"))
- end
- end
-end