35 lines
970 B
JavaScript
Raw Normal View History

2021-04-30 23:10:25 +02:00
"use strict";
const dateUtils = require('../../date_utils.js');
const AbstractEntity = require("./abstract_entity.js");
/**
* Option represents name-value pair, either directly configurable by the user or some system property.
*/
class Option extends AbstractEntity {
static get entityName() { return "options"; }
static get primaryKeyName() { return "name"; }
static get hashedProperties() { return ["name", "value"]; }
constructor(row) {
super();
this.name = row.name;
this.value = row.value;
this.isSynced = !!row.isSynced;
this.utcDateModified = row.utcDateModified;
this.becca.options[this.name] = this;
}
beforeSaving() {
super.beforeSaving();
this.utcDateModified = dateUtils.utcNowDateTime();
2021-05-01 21:52:22 +02:00
// utcDateCreated is scheduled for removal so the value does not matter
this.utcDateCreated = dateUtils.utcNowDateTime();
2021-04-30 23:10:25 +02:00
}
}
module.exports = Option;