2013-07-22 17:48:24 +10:00
|
|
|
module Jobs
|
|
|
|
# various consistency checks
|
2013-08-07 19:25:05 +02:00
|
|
|
class DestroyOldDeletionStubs < Jobs::Scheduled
|
|
|
|
recurrence { hourly.minute_of_hour(0, 30) }
|
|
|
|
|
2013-07-22 17:48:24 +10:00
|
|
|
def execute(args)
|
|
|
|
PostDestroyer.destroy_stubs
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|