add more logging

This commit is contained in:
2024-05-28 14:41:26 -05:00
parent e87222d3c1
commit 2465b8966b
2 changed files with 20 additions and 8 deletions

View File

@@ -135,6 +135,14 @@ export interface JwtToken {
email: string;
user_id: string;
}
export interface JwtPayload {
sub: string;
preferred_username: string;
realm_access?: {
roles?: string[];
};
[key: string]: any; // für andere optionale Felder im JWT-Payload
}
interface Resourceaccess {
account: Realmaccess;
}