diff --git a/lib/response.js b/lib/response.js index 3cbd320..671aa12 100644 --- a/lib/response.js +++ b/lib/response.js @@ -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