Notes/src/routes/api/recent_notes.js

14 lines
263 B
JavaScript
Raw Normal View History

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