Hi Everyone,
Our Single Sign-On implementation is using AWS Cognito. Everything works perfectly but, since the logout button in SeaHub is doing a logout only of the SeaHub session (not the Cognito session), when the user wants to use SSO again with maybe a different user it is not possible because the Cognito session is still open and the user is automatically logged in with the same user as before.
So currently the logout button points to {seahub_domain}/accounts/logout/ and we would need to modify this to point to:
https://{AWS_Cognito_domain}/logout?
client_id={client_id}&logout_uri={seahub_domain}/accounts/logout/
Is there any way to modify the logout URL? we are using the Docker option to deploy Seafile.
Thank you in advance.