Unregister app user
Unregistering an app user should be done when your app user decides to log out and use your app as a guest or when you no longer want the subsequent tickets to be associated with the current app user.
Unregistering is done by calling the Shake.unregisterUser
method:
- Javascript
- Typescript
profile.js
const onLogoutClick = async () => {const success = await networkService.logout();Shake.unregisterUser();}
profile.ts
const onLogoutClick = async () => {const success: boolean = await networkService.logout();Shake.unregisterUser();}