From 8d29d74b02fb07be8efaae002fca9b9033c536f0 Mon Sep 17 00:00:00 2001 From: Erik Michelson Date: Wed, 4 Sep 2019 12:28:44 +0200 Subject: Added endpoint for note-creation with given alias Signed-off-by: Erik Michelson --- lib/response.js | 4 ++-- lib/web/noteRouter.js | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/response.js b/lib/response.js index 6450bdf5..cf4b5c1d 100644 --- a/lib/response.js +++ b/lib/response.js @@ -123,10 +123,10 @@ function newNote (req, res, next) { } models.Note.create({ ownerId: owner, - alias: req.alias ? req.alias : null, + alias: req.alias ? req.alias : (config.allowFreeURL ? (req.params.alias ? req.params.alias : null) : null), content: body }).then(function (note) { - return res.redirect(config.serverURL + '/' + models.Note.encodeNoteId(note.id)) + return res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id))) }).catch(function (err) { logger.error(err) return response.errorInternalError(res) diff --git a/lib/web/noteRouter.js b/lib/web/noteRouter.js index bac2cf88..78cb69e5 100644 --- a/lib/web/noteRouter.js +++ b/lib/web/noteRouter.js @@ -12,6 +12,8 @@ const noteRouter = module.exports = Router() noteRouter.get('/new', response.newNote) // post new note with content noteRouter.post('/new', markdownParser, response.newNote) +// post new note with content and alias +noteRouter.post('/new/:alias', markdownParser, response.newNote) // get publish note noteRouter.get('/s/:shortid', response.showPublishNote) // publish note actions -- cgit v1.2.3