mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 21:53:48 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
25 lines
804 B
Ruby
25 lines
804 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class ActivationReminderEmails < Jobs::Scheduled
|
|
every 2.hours
|
|
|
|
def execute(args)
|
|
User.joins("LEFT JOIN user_custom_fields ON users.id = user_id AND user_custom_fields.name = 'activation_reminder'")
|
|
.where(active: false, staged: false, user_custom_fields: { value: nil })
|
|
.where('users.created_at BETWEEN ? AND ?', 3.days.ago, 2.days.ago)
|
|
.find_each do |user|
|
|
|
|
user.custom_fields['activation_reminder'] = true
|
|
user.save_custom_fields
|
|
|
|
email_token = user.email_tokens.create!(email: user.email)
|
|
Jobs.enqueue(:user_email,
|
|
type: :activation_reminder,
|
|
user_id: user.id,
|
|
email_token: email_token.token)
|
|
end
|
|
end
|
|
end
|
|
end
|