mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
02da022c70
This prevents sidekiq from doing a bunch of queries when email is disabled. Critical emails are a special case and will be sent.
18 lines
329 B
Ruby
18 lines
329 B
Ruby
# base.rb uses this style of require, so maintain usage of it here
|
|
require_dependency "#{Rails.root}/app/jobs/regular/user_email.rb"
|
|
|
|
module Jobs
|
|
class CriticalUserEmail < UserEmail
|
|
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def quit_email_early?
|
|
false
|
|
end
|
|
|
|
def execute(args)
|
|
super(args)
|
|
end
|
|
end
|
|
end
|