5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 12:16:07 +00:00
panel/lib/tasks/stats.rake

12 lines
299 B
Ruby

# frozen_string_literal: true
namespace :stats do
desc 'Process stats'
task process_all: :environment do
Site.all.pluck(:id).each do |site_id|
UriCollectionJob.perform_now site_id: site_id, once: true
StatCollectionJob.perform_now site_id: site_id, once: true
end
end
end