Skip to content

Instantly share code, notes, and snippets.

@mathis-m
Created February 14, 2021 03:05
Show Gist options
  • Save mathis-m/a048f6f56d7c14e38baa590bbec677e8 to your computer and use it in GitHub Desktop.
Save mathis-m/a048f6f56d7c14e38baa590bbec677e8 to your computer and use it in GitHub Desktop.
Custom Logout Plugin
const MyLogoutPlugin = () => ({
statePlugins: {
auth: {
wrapActions: {
logout: (internalLogoutAction) => (keys) => {
// here, you can run the logout request.
console.log("Logout from following securities:", keys)
return internalLogoutAction(keys) // don't forget! otherwise, Swagger UI won't logout
}
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment