Is there a way to implement this?
redirect(url: "${myDomain1RootUrl}/j_spring_security_logout") // make this asynchronous call
redirect(url: "${myDomain2RootUrl}/j_spring_security_logout") // make this asynchronous call
redirect(uri: "/j_spring_security_logout")
Basically, this code is going to logout the session for several internal domains and then finally, it logs out of the current site. Is this possible?
Thanks.