Implement account authentication (server)

This commit is contained in:
Elijah R
2024-04-05 09:10:47 -04:00
committed by Elijah R
parent b815bf8874
commit f89492cfcd
6 changed files with 133 additions and 2 deletions

View File

@@ -8,6 +8,15 @@ export default interface IConfig {
originAllowedDomains : string[];
maxConnections: number;
};
auth : {
enabled : boolean;
apiEndpoint : string;
secretKey : string;
guestPermissions : {
chat : boolean;
turn : boolean;
}
}
vm : {
qemuArgs : string;
vncPort : number;