Merge pull request #566 from codimd/fix/306-api-titles
Save note title to database when creating a note
This commit is contained in:
commit
db2fcdb516
@ -59,7 +59,8 @@ exports.newNote = function (req, res, body) {
|
|||||||
models.Note.create({
|
models.Note.create({
|
||||||
ownerId: owner,
|
ownerId: owner,
|
||||||
alias: req.alias ? req.alias : null,
|
alias: req.alias ? req.alias : null,
|
||||||
content: body
|
content: body,
|
||||||
|
title: models.Note.parseNoteTitle(body)
|
||||||
}).then(function (note) {
|
}).then(function (note) {
|
||||||
return res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
|
return res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
|
||||||
}).catch(function (err) {
|
}).catch(function (err) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user