mirror of
https://github.com/discourse/discourse.git
synced 2025-03-06 12:15:29 +08:00
13 lines
149 B
Ruby
13 lines
149 B
Ruby
![]() |
module Jobs
|
||
|
|
||
|
class BadgeGrant < Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
BadgeGranter.backfill_like_badges
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|