Files
Trilium/src/entities/recent_note.js
2018-05-22 22:22:15 -04:00

11 lines
326 B
JavaScript

"use strict";
const Entity = require('./entity');
class RecentNote extends Entity {
static get tableName() { return "recent_notes"; }
static get primaryKeyName() { return "branchId"; }
static get hashedProperties() { return ["branchId", "notePath", "dateAccessed", "isDeleted"]; }
}
module.exports = RecentNote;