Merge pull request #1027 from asg017/master

Add download action to published notes
This commit is contained in:
Christoph (Sheogorath) Kern 2018-11-12 22:11:44 +01:00 committed by GitHub
commit 54d3d930cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -423,6 +423,9 @@ function publishNoteActions (req, res, next) {
findNote(req, res, function (note) {
var action = req.params.action
switch (action) {
case 'download':
actionDownload(req, res, note)
break
case 'edit':
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
break