mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 06:53:46 +08:00
20 lines
280 B
Ruby
20 lines
280 B
Ruby
module Jobs
|
|
|
|
class BadgeGrant < Jobs::Scheduled
|
|
def self.run
|
|
self.new.execute(nil)
|
|
end
|
|
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.enable_badges
|
|
Badge.all.each do |b|
|
|
BadgeGranter.backfill(b)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|