discourse/app/jobs/regular/critical_user_email.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
225 B
Ruby
Raw Normal View History

# 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