mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
14 lines
243 B
Ruby
14 lines
243 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class BulkStatsCalculatingJob < ApplicationJob
|
||
|
|
queue_as :stats
|
||
|
|
|
||
|
|
def perform
|
||
|
|
user_ids = User.pluck(:id)
|
||
|
|
|
||
|
|
user_ids.each do |user_id|
|
||
|
|
Stats::CalculatingJob.perform_later(user_id)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|