trilium/src/entities/recent_note.js

11 lines
326 B
JavaScript
Raw Normal View History

2018-04-02 00:03:21 +08:00
"use strict";
const Entity = require('./entity');
class RecentNote extends Entity {
static get tableName() { return "recent_notes"; }
static get primaryKeyName() { return "branchId"; }
2018-05-23 10:22:15 +08:00
static get hashedProperties() { return ["branchId", "notePath", "dateAccessed", "isDeleted"]; }
2018-04-02 00:03:21 +08:00
}
module.exports = RecentNote;