dawarich/app/jobs/stat_creating_job.rb
2024-04-26 18:59:58 +02:00

9 lines
164 B
Ruby

# frozen_string_literal: true
class StatCreatingJob < ApplicationJob
queue_as :stats
def perform(user_ids = nil)
CreateStats.new(user_ids).call
end
end