mirror of
https://github.com/zadam/trilium.git
synced 2024-11-12 18:54:49 +08:00
34 lines
No EOL
969 B
JavaScript
34 lines
No EOL
969 B
JavaScript
"use strict";
|
|
|
|
const Entity = require('./entity');
|
|
const dateUtils = require('../services/date_utils');
|
|
|
|
/**
|
|
* ApiToken is an entity representing token used to authenticate against Trilium API from client applications. Currently used only by Trilium Sender.
|
|
*
|
|
* @param {string} apiTokenId - primary key
|
|
* @param {string} token
|
|
* @param {boolean} isDeleted - true if API token is deleted
|
|
* @param {string} utcDateCreated
|
|
*
|
|
* @extends Entity
|
|
*/
|
|
class ApiToken extends Entity {
|
|
static get entityName() { return "api_tokens"; }
|
|
static get primaryKeyName() { return "apiTokenId"; }
|
|
static get hashedProperties() { return ["apiTokenId", "token", "utcDateCreated", "isDeleted"]; }
|
|
|
|
beforeSaving() {
|
|
if (!this.isDeleted) {
|
|
this.isDeleted = false;
|
|
}
|
|
|
|
if (!this.utcDateCreated) {
|
|
this.utcDateCreated = dateUtils.utcNowDateTime();
|
|
}
|
|
|
|
super.beforeSaving();
|
|
}
|
|
}
|
|
|
|
module.exports = ApiToken; |