mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
16 lines
225 B
Ruby
16 lines
225 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
|