mirror of
https://github.com/discourse/discourse.git
synced 2026-08-09 21:45:25 +08:00
9 lines
206 B
Ruby
Vendored
9 lines
206 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UpdateStaleLeaderboardPositions < ::Jobs::Base
|
|
def execute(args = nil)
|
|
DiscourseGamification::LeaderboardCachedView.update_all
|
|
end
|
|
end
|
|
end
|