fix(xo-server-auth-saml): AssertionConsumerServiceURL matches callback URL

Fixes xoa-support#1235
This commit is contained in:
Julien Fontanet
2019-02-04 16:21:26 +01:00
parent 0ad68c2280
commit b580ea98a7
2 changed files with 8 additions and 1 deletions

View File

@@ -5,8 +5,10 @@
### Bug fixes
- [Host] Show the host's memory usage instead of the sum of the VMs' memory usage (PR [#3924](https://github.com/vatesfr/xen-orchestra/pull/3924))
- [SAML] Make `AssertionConsumerServiceURL` matches the callback URL
### Released packages
- xo-server-auth-saml v0.5.3
- xo-server v5.35.0
- xo-web v5.35.0

View File

@@ -42,7 +42,12 @@ class AuthSamlXoPlugin {
configure({ usernameField, ...conf }) {
this._usernameField = usernameField
this._conf = conf
this._conf = {
...conf,
// must match the callback URL
path: '/signin/saml/callback',
}
}
load() {