- Connected keycloak

- changed backend-api port
- started to work with the keycloak token to receive userdata
- connected backend-api
This commit is contained in:
josch
2024-04-29 10:30:25 +02:00
parent 12bc0a3733
commit ab1c4d0705
11 changed files with 127 additions and 82 deletions

12
src/models.ts Normal file
View File

@@ -0,0 +1,12 @@
export interface ptpUser {
keycloakID: string;
firstName: string;
lastName: string;
username: string;
}
export interface responseModel {
success: boolean;
message: string;
response: any;
}