mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-03 15:46:21 +00:00
Save note title to database when creating a note
Currently, when creating a note with content via the API, a title is only saved to the database after visiting the note with the browser. This commit makes sure that a title is saved at creation time. Closes #306 Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
e28bc8eab4
commit
9dd74da17f
1 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,8 @@ exports.newNote = function (req, res, body) {
|
|||
models.Note.create({
|
||||
ownerId: owner,
|
||||
alias: req.alias ? req.alias : null,
|
||||
content: body
|
||||
content: body,
|
||||
title: models.Note.parseNoteTitle(body)
|
||||
}).then(function (note) {
|
||||
return res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
|
||||
}).catch(function (err) {
|
||||
|
|
Loading…
Reference in a new issue