Customize Log-Off Destination

In SCA when click on the logout button the user will redirect into home page by default.We can redirect the user to the Login Page by customising

We can change the url at the initialize function of Home.View

var params = Utils.parseUrlOptions(window.location.search);
if(!!params.logoff){
    var loginUrl = SC.Session.touchpoints.login;
    window.location.replace(loginUrl);
         }

Leave a comment

Your email address will not be published. Required fields are marked *