-
Notifications
You must be signed in to change notification settings - Fork 139
SSO auth cannot be used to logout of sessions #314
Copy link
Copy link
Description
If you have only SSO authentication, you cannot logout of sessions. This is because if you try to log out of a session the user will be asked to do password authentication, but the account doesn't have a password. I believe this may happen because the only advertised authentication flows are password and jwt:
tuwunel/src/api/router/auth/uiaa.rs
Lines 19 to 22 in 6c91aa1
| let flows = [ | |
| AuthFlow::new([AuthType::Password].into()), | |
| AuthFlow::new([AuthType::Jwt].into()), | |
| ]; |
My expectation is that if the server uses single sign on, when you try to log out of a session (or any other action which requires re-authenticating), these actions would do SSO authentication.
Related:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels