discourse/app/jobs/scheduled/reviewable_priorities.rb

20 lines
534 B
Ruby
Raw Normal View History

2019-05-13 09:55:44 +08:00
# frozen_string_literal: true
class Jobs::ReviewablePriorities < Jobs::Scheduled
every 1.day
def execute(args)
# We calculate the percentiles here for medium and high. Low is always 0 (all)
res = DB.query_single(<<~SQL)
SELECT COALESCE(PERCENTILE_DISC(0.5) WITHIN GROUP (ORDER BY score), 0.0) AS medium,
COALESCE(PERCENTILE_DISC(0.85) WITHIN GROUP (ORDER BY score), 0.0) AS high
FROM reviewables
SQL
medium, high = res
Reviewable.set_priorities(medium: medium, high: high)
end
end