Add base UI config

This commit is contained in:
2023-06-06 16:39:47 +02:00
parent 8f0a3e1f07
commit 704a25d2e8
8 changed files with 955 additions and 59 deletions

View File

@@ -0,0 +1,8 @@
export class AuthApi {
/**
* Check out whether user is signed in or not
*/
static get SignedIn(): boolean {
return false;
}
}