2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/app/jobs/scheduled/clean_up_unsubscribe_keys.rb
2017-07-28 10:20:09 +09:00

12 lines
191 B
Ruby

module Jobs
class CleanUpUnsubscribeKeys < Jobs::Scheduled
every 1.day
def execute(args)
UnsubscribeKey.where('created_at < ?', 2.months.ago).delete_all
end
end
end