trilium/src/entities/branch.js

20 lines
511 B
JavaScript
Raw Normal View History

2018-03-25 09:39:15 +08:00
"use strict";
const Entity = require('./entity');
2018-04-01 10:15:06 +08:00
const utils = require('../services/utils');
2018-04-01 11:08:22 +08:00
const repository = require('../services/repository');
2018-03-25 09:39:15 +08:00
class Branch extends Entity {
static get tableName() { return "branches"; }
static get primaryKeyName() { return "branchId"; }
2018-04-01 10:15:06 +08:00
2018-04-01 11:08:22 +08:00
async getNote() {
return await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.noteId]);
}
2018-04-01 10:15:06 +08:00
beforeSaving() {
this.dateModified = utils.nowDate()
}
2018-03-25 09:39:15 +08:00
}
module.exports = Branch;