mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
Removed sidetiq, introduced new scheduler - add basic UI - add schedule discover - add scheduling in initializer
10 lines
189 B
Ruby
10 lines
189 B
Ruby
module Jobs
|
|
# various consistency checks
|
|
class DestroyOldDeletionStubs < Jobs::Scheduled
|
|
every 30.minutes
|
|
|
|
def execute(args)
|
|
PostDestroyer.destroy_stubs
|
|
end
|
|
end
|
|
end
|