mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
11 lines
230 B
Ruby
11 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StatCreatingJob < ApplicationJob
|
|
queue_as :stats
|
|
|
|
def perform(user_ids = nil)
|
|
user_ids = user_ids.nil? ? User.pluck(:id) : Array(user_ids)
|
|
|
|
CreateStats.new(user_ids).call
|
|
end
|
|
end
|