Skip to:
This patch allows the configuration of different loggedOutUrls based on the user type of the person that is logging out.
For instance I have a user with the usertype of 'sakai' and I want them to go to http://www.sakaiproject.org when they click logout:
In sakai.properties:
the URL to send folks to after they logoutloggedOutUrl=/portalloggedOutUrl.sakai=http://www.sakaiproject.org
Will fall back to the default in case the specific url is not provided.
We need this for providing different login pages for different user types, we want them to then logout back to that same page.
We don't have a specific need for it in 2.8 at this stage, but could be a nice feature to add. Do you want to raise it with the TCC?
Steve, do you want to see this in 2.8.x? It's pretty low-impact and a nice feature for many... if yes, should go to TCC for review?
Integrated in sakai trunk #335 (See http://builds.sakaiproject.org:8080/job/sakai%20trunk/335/) allow different logged out URLs based on user type
Properties:
The default:loggedOutUrl=/portal
And then optional ones:loggedOutUrl.guest=http://www.sakaiproject.org loggedOutUrl.registered=https://www.someplace.com...
r83786
This patch allows the configuration of different loggedOutUrls based on the user type of the person that is logging out.
For instance I have a user with the usertype of 'sakai' and I want them to go to http://www.sakaiproject.org when they click logout:
In sakai.properties:
the URL to send folks to after they logout
loggedOutUrl=/portal
loggedOutUrl.sakai=http://www.sakaiproject.org
Will fall back to the default in case the specific url is not provided.
We need this for providing different login pages for different user types, we want them to then logout back to that same page.