discourse/lib/jobs/destroy_old_deletion_stubs.rb
Sam 1f3c5cb656 allow end user to recover a post they delete
automatically delete stubs after 1 day
2013-07-22 17:48:47 +10:00

9 lines
162 B
Ruby

module Jobs
# various consistency checks
class DestroyOldDeletionStubs < Jobs::Base
def execute(args)
PostDestroyer.destroy_stubs
end
end
end