Notes/src/services/becca/entities/recent_note.js

23 lines
560 B
JavaScript
Raw Normal View History

2021-05-02 19:59:16 +02:00
"use strict";
const dateUtils = require('../../date_utils.js');
const AbstractEntity = require("./abstract_entity.js");
/**
* RecentNote represents recently visited note.
*/
class RecentNote extends AbstractEntity {
static get entityName() { return "recent_notes"; }
static get primaryKeyName() { return "noteId"; }
constructor(row) {
super();
this.noteId = row.noteId;
this.notePath = row.notePath;
this.utcDateCreated = row.utcDateCreated || dateUtils.utcNowDateTime();
}
}
module.exports = RecentNote;