trilium/src/entities/image.js
2018-04-01 17:38:24 -04:00

27 lines
No EOL
583 B
JavaScript

"use strict";
const Entity = require('./entity');
const utils = require('../services/utils');
class Image extends Entity {
static get tableName() { return "images"; }
static get primaryKeyName() { return "imageId"; }
beforeSaving() {
if (!this.imageId) {
this.imageId = utils.newImageId();
}
if (!this.isDeleted) {
this.isDeleted = false;
}
if (!this.dateCreated) {
this.dateCreated = utils.nowDate();
}
this.dateModified = utils.nowDate();
}
}
module.exports = Image;