summaryrefslogtreecommitdiff
path: root/lib/web
diff options
context:
space:
mode:
authorErik Michelson2019-09-04 12:28:44 +0200
committerErik Michelson2019-09-04 12:28:44 +0200
commit8d29d74b02fb07be8efaae002fca9b9033c536f0 (patch)
treee18f03a84f031828cd344bf0edd32a61f8b96bb2 /lib/web
parent529075fd67ad0d41ba0b25a7de69817dd4cd76fb (diff)
Added endpoint for note-creation with given alias
Signed-off-by: Erik Michelson <erik@liltv.de>
Diffstat (limited to 'lib/web')
-rw-r--r--lib/web/noteRouter.js2
1 files changed, 2 insertions, 0 deletions
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