mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
19 lines
234 B
Ruby
19 lines
234 B
Ruby
module Jobs
|
|
|
|
class BadgeGrant < Jobs::Scheduled
|
|
def self.run
|
|
self.new.execute(nil)
|
|
end
|
|
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
Badge.all.each do |b|
|
|
BadgeGranter.backfill(b)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|