authorized fix keycloak sidebarItem

This commit is contained in:
2025-07-08 14:07:50 +07:00
parent 25f4b8cac7
commit 1b80be5fdd
48 changed files with 11684 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface SessionUserTypes {
userName ?:string,
typeUser?:string,
roleUser?:string,
isAuthenticated?:boolean,
userInfo?:UserInfo,
expires_in?:ExpiresIn
}
interface ExpiresIn {
timestamps:number,
date:string,
}
interface UserInfo{
id?:string,
fullName?:string,
givenName?:string,
familyName?:string,
email?:string,
group?:string
}