mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
const Entity = require('./entity');
|
||
|
|
|
||
|
|
class Option extends Entity {
|
||
|
|
static get tableName() { return "options"; }
|
||
|
|
static get primaryKeyName() { return "name"; }
|
||
|
|
static get syncedProperties() { return ["name", "value"]; }
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = Option;
|