-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
I use this code to logout user:
const signOut: JwtAuthContextType['signOut'] = useCallback(() => {
removeTokenStorageValue();
removeGlobalHeaders(['Authorization']);
setAuthState({
authStatus: 'unauthenticated',
isAuthenticated: false,
user: null
});
auth.signoutRedirect();
}, [removeTokenStorageValue]);
When I call it I'm redirected to http://host:8080/logout?id_token_hint=eyJraWQiOi.......
I need to set a custom logout url: http://host:8080/connect/logout?id_token_hint=eyJraWQiOi......
Do you know how I can configure this?
Metadata
Metadata
Assignees
Labels
No labels