dawarich/app/jobs/stat_creating_job.rb

10 lines
164 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class StatCreatingJob < ApplicationJob
2024-04-26 12:59:58 -04:00
queue_as :stats
def perform(user_ids = nil)
CreateStats.new(user_ids).call
end
end