After logout: how to return to url xyz

0
My company has a central application-page and SSO. When a user leaves my Mendix app, she needs to be sent back to that central application page. How to do that? The first solution that comes to mind is placing a 301-redirect on the login.html of my Mendix app. Is there a nicer solution?
asked
1 answers
1

Assuming you’re using the SAML module, you just need to set the DefaultLogoutPage constant to the page/url where you want users to end up after logging out. The documentation here describes the setting in more detail.

Functionally, this works by setting a cookie on your user’s browser called “originURI”. When a user logs out, they are sent to the location specified in that cookie. You’ll see code referencing originURI in either the default index.html or login.html files.

answered