Sign a user out from the application

A user can log out from the application using the signOut() method where the redirect URL is passed as an argument.The auth reference used in the code snippet below is the auth instance.

This does not return a promise.

Copied//Configure the redirect url after successful logout
    var redirectURL = "https://catalyst.zoho.com";
 //Use the redirect url and call the method to sign out 
    var auth = catalyst.auth;
    auth.signOut(redirectURL);