Fix RelayState property in saml-post-form

Closes #1
This commit is contained in:
Oliver Traber 2023-02-21 19:05:28 +01:00
parent 7a0edc1376
commit f377ed313e
Signed by: Bluemedia
GPG Key ID: C0674B105057136C
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
export type SAMLPostData = {
SAMLRequest?: string,
SAMLResponse?: string,
relayState?: string,
RelayState?: string,
}

View File

@ -28,7 +28,7 @@ export default defineComponent({
const postData: SAMLPostData = {
SAMLRequest: this.context.samlPost.SAMLRequest,
SAMLResponse: this.context.samlPost.SAMLResponse,
relayState: this.context.samlPost.relayState,
RelayState: this.context.samlPost.relayState,
};
this.formPost(this.context.samlPost.url, postData);
},