Merge pull request #709 from hedgedoc/fix/api-notes-metadata

This commit is contained in:
Yannick Bungers 2021-01-15 22:47:52 +01:00 committed by GitHub
commit 0d95c29df2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 3 deletions

View file

@ -195,6 +195,7 @@ export class NotesService {
revisions.push(Revision.create(noteContent, noteContent));
note.revisions = Promise.resolve(revisions);
await this.noteRepository.save(note);
return this.toNoteDto(note);
}
async getNoteMetadata(noteIdOrAlias: string): Promise<NoteMetadataDto> {