mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
e1f293ad66
Removed sidetiq, introduced new scheduler - add basic UI - add schedule discover - add scheduling in initializer
14 lines
243 B
Ruby
14 lines
243 B
Ruby
module Jobs
|
|
|
|
class PurgeDeletedUploads < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
grace_period = SiteSetting.purge_deleted_uploads_grace_period_days
|
|
Discourse.store.purge_tombstone(grace_period)
|
|
end
|
|
|
|
end
|
|
|
|
end
|