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

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