This commit is contained in:
Jori Lallo
2016-06-23 00:19:45 -07:00
parent 7f4095b77f
commit 7ea6eb5d28
2 changed files with 8 additions and 1 deletions

View File

@ -119,6 +119,9 @@ router.post('documents.delete', auth(), async (ctx) => {
if (!document) throw httpErrors.BadRequest();
// TODO: Don't allow to destroy root docs
// TODO: handle sub documents
try {
await document.destroy();
} catch (e) {