2024-04-02 11:37:38 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-03-23 15:40:05 -04:00
|
|
|
class StatCreatingJob < ApplicationJob
|
|
|
|
|
queue_as :default
|
|
|
|
|
|
2024-04-02 11:37:38 -04:00
|
|
|
def perform(user_ids = nil)
|
|
|
|
|
CreateStats.new(user_ids).call
|
2024-03-23 15:40:05 -04:00
|
|
|
end
|
|
|
|
|
end
|