Skip to content

Commit

Permalink
Change order of keys
Browse files Browse the repository at this point in the history
  • Loading branch information
AmshikaH committed Jan 13, 2025
1 parent ac4589a commit 8a9fbe3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,17 +292,18 @@ export const SamlAuthenticatorSettingsForm: FunctionComponent<SamlSettingsFormPr
defaultValue: "string",
key: "ResponseAuthnContextClassRef"
}),
samlAuthnRequestProviderName: findPropVal<string>({ defaultValue: "",
key: "samlAuthnRequestProviderName" }),
SPEntityId: findPropVal<string>({ defaultValue: "", key: "SPEntityId" }),
SSOUrl: findPropVal<string>({ defaultValue: "", key: "SSOUrl" }),
SignatureAlgorithm: findPropVal<string>({ defaultValue: "RSA with SHA256", key: "SignatureAlgorithm" }),
commonAuthQueryParams: findPropVal<string>({ defaultValue: "", key: "commonAuthQueryParams" }),
/**
* https://github.com/wso2/product-is/issues/17004
*/
isAssertionSigned: findPropVal<boolean>({ defaultValue: false, key: "isAssertionSigned" })

isAssertionSigned: findPropVal<boolean>({ defaultValue: false, key: "isAssertionSigned" }),
samlAuthnRequestProviderName: findPropVal<string>({
defaultValue: "",
key: "samlAuthnRequestProviderName"
})
} as SamlPropertiesInterface;

}, []);
Expand Down

0 comments on commit 8a9fbe3

Please sign in to comment.