fix linting
This commit is contained in:
parent
68f92493b7
commit
c9e4bb7484
@ -33,8 +33,7 @@
|
|||||||
"pve": "pve",
|
"pve": "pve",
|
||||||
"db": "localdb",
|
"db": "localdb",
|
||||||
"auth": {
|
"auth": {
|
||||||
"pve": "pve",
|
"pve": "pve"
|
||||||
"ldap": "paasldap"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"application": {
|
"application": {
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user