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