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