mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:18:18 +08:00
fcb4e5a1a1
Co-authored-by: David Taylor <david@taylorhq.com>
17 lines
226 B
Ruby
17 lines
226 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CriticalUserEmail < UserEmail
|
|
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def quit_email_early?
|
|
false
|
|
end
|
|
|
|
def execute(args)
|
|
super(args)
|
|
end
|
|
end
|
|
end
|