trilium/src/routes/api/recent_notes.js

14 lines
263 B
JavaScript
Raw Normal View History

2017-11-05 11:46:50 +08:00
"use strict";
2018-04-02 00:03:21 +08:00
const RecentNote = require('../../entities/recent_note');
2017-11-05 11:46:50 +08:00
2018-03-31 03:34:07 +08:00
async function addRecentNote(req) {
2018-04-03 10:53:01 +08:00
await new RecentNote({
noteId: req.body.noteId,
notePath: req.body.notePath
2018-04-03 10:53:01 +08:00
}).save();
2018-03-31 03:34:07 +08:00
}
module.exports = {
addRecentNote
};