Fixes
This commit is contained in:
@ -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) {
|
||||
|
@ -56,7 +56,11 @@ const Atlas = sequelize.define('atlas', {
|
||||
atlasId: this.id,
|
||||
}});
|
||||
|
||||
if (rootDocument) {
|
||||
return await getNodeForDocument(rootDocument);
|
||||
} else {
|
||||
return; // TODO should create a root doc
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user