0
0
Fork 0

Add admin property to accounts in the config

This commit is contained in:
Oliver Akins 2022-07-31 17:49:23 -06:00
parent 5a40eab800
commit ce85ca2be0
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
2 changed files with 3 additions and 0 deletions

View file

@ -1,6 +1,7 @@
interface account {
username: string;
password: string;
admin: boolean;
access: string[];
}