mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
11 lines
326 B
JavaScript
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; |