add dummy sidekiq job
This commit is contained in:
parent
c32fa93689
commit
167060ea14
1 changed files with 8 additions and 0 deletions
8
app/jobs/sidekiq_again_job.rb
Normal file
8
app/jobs/sidekiq_again_job.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
class SidekiqAgainJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
queue_as :default
|
||||
|
||||
def perform(user)
|
||||
UserMailer.new_account_warning(user).deliver_now
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue