You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
191 B
12 lines
191 B
5 years ago
|
# frozen_string_literal: true
|
||
|
|
||
3 years ago
|
class Scheduler::Trends::ReviewNotificationsScheduler
|
||
5 years ago
|
include Sidekiq::Worker
|
||
|
|
||
4 years ago
|
sidekiq_options retry: 0
|
||
5 years ago
|
|
||
|
def perform
|
||
3 years ago
|
Trends.request_review!
|
||
5 years ago
|
end
|
||
|
end
|