fix linting

This commit is contained in:
Arthur Lu 2024-01-12 01:49:24 +00:00
parent b27172dd9e
commit fae2eb1724
4 changed files with 10 additions and 7 deletions

View File

@ -33,8 +33,7 @@
"pve": "pve", "pve": "pve",
"db": "localdb", "db": "localdb",
"auth": { "auth": {
"pve": "pve", "pve": "pve"
"ldap": "paasldap"
} }
}, },
"application": { "application": {

View File

@ -35,9 +35,13 @@ export default class LocalDB extends DB_BACKEND {
writeFileSync(this.#path, JSON.stringify(this.#data)); writeFileSync(this.#path, JSON.stringify(this.#data));
} }
openSession (credentials) { return [] } openSession (credentials) {
return [];
}
closeSesssion (tokens) {return true } closeSesssion (tokens) {
return true;
}
addUser (username, config = null) { addUser (username, config = null) {
config = config || this.#defaultuser; config = config || this.#defaultuser;