Co-authored-by: Dambar Pun <dambarpun@Dambars-MacBook-Pro.local> Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>
9 lines
165 B
Ruby
9 lines
165 B
Ruby
class AudienceSegmentRefreshWorker
|
|
include Sidekiq::Job
|
|
|
|
sidekiq_options queue: :low_priority
|
|
|
|
def perform(id)
|
|
AudienceSegment.find(id).refresh!
|
|
end
|
|
end
|