parent
7a0edc1376
commit
f377ed313e
|
@ -1,5 +1,5 @@
|
||||||
export type SAMLPostData = {
|
export type SAMLPostData = {
|
||||||
SAMLRequest?: string,
|
SAMLRequest?: string,
|
||||||
SAMLResponse?: string,
|
SAMLResponse?: string,
|
||||||
relayState?: string,
|
RelayState?: string,
|
||||||
}
|
}
|
|
@ -28,7 +28,7 @@ export default defineComponent({
|
||||||
const postData: SAMLPostData = {
|
const postData: SAMLPostData = {
|
||||||
SAMLRequest: this.context.samlPost.SAMLRequest,
|
SAMLRequest: this.context.samlPost.SAMLRequest,
|
||||||
SAMLResponse: this.context.samlPost.SAMLResponse,
|
SAMLResponse: this.context.samlPost.SAMLResponse,
|
||||||
relayState: this.context.samlPost.relayState,
|
RelayState: this.context.samlPost.relayState,
|
||||||
};
|
};
|
||||||
this.formPost(this.context.samlPost.url, postData);
|
this.formPost(this.context.samlPost.url, postData);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue