mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:54:48 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
19 lines
421 B
Ruby
19 lines
421 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_dependency 'jobs/scheduled/grant_anniversary_badges'
|
|
|
|
module Jobs
|
|
|
|
class RetroGrantAnniversary < Jobs::Onceoff
|
|
def execute_onceoff(args)
|
|
return unless SiteSetting.enable_badges
|
|
|
|
# Fill in the years of anniversary badges we missed
|
|
(2..3).each do |year|
|
|
Jobs::GrantAnniversaryBadges.new.execute(start_date: year.years.ago)
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|