Update email_worker.rb

This commit is contained in:
2017-01-29 19:15:14 -05:00
committed by GitHub
parent be3a3b920d
commit 644899c0b5

View File

@@ -12,11 +12,7 @@
class EmailWorker
include Sidekiq::Worker
def perform(email, count)
def perform()
# email something
end
end
every :sunday do # Many shortcuts available: :hour, :day, :month, :year, :reboot
runner "EmailWorker.perform_async"
end