41 lines
837 B
JavaScript
41 lines
837 B
JavaScript
import Base from './base.js';
|
|
|
|
class Config extends Base {
|
|
static tableName = 'config';
|
|
|
|
static jsonSchema = {
|
|
type: 'object',
|
|
required: ['key', 'value'],
|
|
|
|
properties: {
|
|
id: { type: 'string', format: 'uuid' },
|
|
key: { type: 'string', minLength: 1 },
|
|
value: { type: 'object' },
|
|
},
|
|
};
|
|
|
|
static async isInstallationCompleted() {
|
|
const installationCompletedEntry = await this
|
|
.query()
|
|
.where({
|
|
key: 'installation.completed'
|
|
})
|
|
.first();
|
|
|
|
const installationCompleted = installationCompletedEntry?.value?.data === true;
|
|
|
|
return installationCompleted;
|
|
}
|
|
|
|
static async markInstallationCompleted() {
|
|
return await this.query().insert({
|
|
key: 'installation.completed',
|
|
value: {
|
|
data: true,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export default Config;
|