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