Logout
You can logout the user from Kommunicate using the logout
function:
Cordova
If you are using native Cordova:
kommunicate.logout(function(response){
//logout successfull
}, function(response){
//logout failed
});
Ionic
If you are using the ionic framework:
this.kommunicate.logout()
.then((response : any) => { /*logout sucessful*/ })
.catch((error : any) => { /*logout failed*/ });