mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
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
|