This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-03-03 14:45:48 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DigestMailerWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'mailers'
|
|
|
|
|
2017-05-10 06:45:43 -07:00
|
|
|
attr_reader :user
|
|
|
|
|
2017-03-03 14:45:48 -08:00
|
|
|
def perform(user_id)
|
2017-05-10 06:45:43 -07:00
|
|
|
@user = User.find(user_id)
|
2018-01-14 19:34:28 -08:00
|
|
|
deliver_digest if @user.allows_digest_emails?
|
2017-05-10 06:45:43 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def deliver_digest
|
2017-03-03 14:45:48 -08:00
|
|
|
NotificationMailer.digest(user.account).deliver_now!
|
|
|
|
user.touch(:last_emailed_at)
|
|
|
|
end
|
|
|
|
end
|