2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
module Emails
|
|
|
|
module Profile
|
2015-04-26 12:48:37 +05:30
|
|
|
def new_user_email(user_id, token = nil)
|
|
|
|
@current_user = @user = User.find(user_id)
|
2014-09-02 18:07:02 +05:30
|
|
|
@target_url = user_url(@user)
|
|
|
|
@token = token
|
2015-04-26 12:48:37 +05:30
|
|
|
mail(to: @user.notification_email, subject: subject("Account was created for you"))
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2014-09-02 18:07:02 +05:30
|
|
|
def new_ssh_key_email(key_id)
|
2017-09-10 17:25:29 +05:30
|
|
|
@key = Key.find_by(id: key_id)
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
return unless @key
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
@current_user = @user = @key.user
|
2014-09-02 18:07:02 +05:30
|
|
|
@target_url = user_url(@user)
|
2015-04-26 12:48:37 +05:30
|
|
|
mail(to: @user.notification_email, subject: subject("SSH key was added to your account"))
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
def new_gpg_key_email(gpg_key_id)
|
|
|
|
@gpg_key = GpgKey.find_by(id: gpg_key_id)
|
|
|
|
|
|
|
|
return unless @gpg_key
|
|
|
|
|
|
|
|
@current_user = @user = @gpg_key.user
|
|
|
|
@target_url = user_url(@user)
|
|
|
|
mail(to: @user.notification_email, subject: subject("GPG key was added to your account"))
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|