fix: Allow empty document body to be saved

closes #1258
This commit is contained in:
Tom Moor 2020-05-07 20:52:02 -07:00
parent bd2837250b
commit 06a3258b99
2 changed files with 19 additions and 1 deletions

View File

@ -809,7 +809,7 @@ router.post('documents.update', auth(), async ctx => {
if (append) {
document.text += text;
} else if (text) {
} else if (text !== undefined) {
document.text = text;
}
document.lastModifiedById = user.id;

View File

@ -1495,6 +1495,24 @@ describe('#documents.update', async () => {
expect(body).toMatchSnapshot();
});
it('should allow setting empty text', async () => {
const { user, document } = await seed();
const res = await server.post('/api/documents.update', {
body: {
token: user.getJwtToken(),
id: document.id,
lastRevision: document.revision,
title: 'Updated Title',
text: '',
},
});
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.data.text).toBe('');
});
it('should require authentication', async () => {
const { document } = await seed();
const res = await server.post('/api/documents.update', {