-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gitlab logout #479
Labels
Milestone
Comments
prasadtalasila
added
bug
Something isn't working
enhancement
New feature or request
labels
Jan 22, 2024
Even the SessionStorage of the react website is not cleared. This needs to be cleared as well. The following changes are needed:
export declare interface AuthContextProps extends AuthState {
/**
* UserManager functions. See [UserManager](https://github.com/authts/oidc-client-ts) for more details.
*/
readonly settings: UserManagerSettings;
readonly events: UserManagerEvents;
clearStaleState(): Promise<void>;
removeUser(): Promise<void>;
signinPopup(args?: SigninPopupArgs): Promise<User>;
signinSilent(args?: SigninSilentArgs): Promise<User | null>;
signinRedirect(args?: SigninRedirectArgs): Promise<void>;
signinResourceOwnerCredentials(args: SigninResourceOwnerCredentialsArgs): Promise<User>;
signoutRedirect(args?: SignoutRedirectArgs): Promise<void>;
signoutPopup(args?: SignoutPopupArgs): Promise<void>;
signoutSilent(args?: SignoutSilentArgs): Promise<void>;
querySessionStatus(args?: QuerySessionStatusArgs): Promise<SessionStatus | null>;
revokeTokens(types?: RevokeTokensTypes): Promise<void>;
startSilentRenew(): void;
stopSilentRenew(): void;
}
|
Completed in PR #793 |
github-project-automation
bot
moved this from In progress
to Done
in Digital Twin as a Service
Jul 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current codebase does not logout of gitlab. Does using oauth revoke API help?
The text was updated successfully, but these errors were encountered: