Fixes
This commit is contained in:
@ -119,6 +119,9 @@ router.post('documents.delete', auth(), async (ctx) => {
|
|||||||
|
|
||||||
if (!document) throw httpErrors.BadRequest();
|
if (!document) throw httpErrors.BadRequest();
|
||||||
|
|
||||||
|
// TODO: Don't allow to destroy root docs
|
||||||
|
// TODO: handle sub documents
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await document.destroy();
|
await document.destroy();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
@ -56,7 +56,11 @@ const Atlas = sequelize.define('atlas', {
|
|||||||
atlasId: this.id,
|
atlasId: this.id,
|
||||||
}});
|
}});
|
||||||
|
|
||||||
return await getNodeForDocument(rootDocument);
|
if (rootDocument) {
|
||||||
|
return await getNodeForDocument(rootDocument);
|
||||||
|
} else {
|
||||||
|
return; // TODO should create a root doc
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user