diff options
| -rw-r--r-- | lasso/xml/lib_authn_request.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lasso/xml/lib_authn_request.c b/lasso/xml/lib_authn_request.c index 6444c57f..bbc3a840 100644 --- a/lasso/xml/lib_authn_request.c +++ b/lasso/xml/lib_authn_request.c @@ -90,6 +90,10 @@ static struct XmlSnippet schema_snippets[] = { { "ProviderID", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, ProviderID) }, { "AffiliationID", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, AffiliationID) }, { "NameIDPolicy", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, NameIDPolicy) }, + { "ForceAuthn", SNIPPET_CONTENT | SNIPPET_BOOLEAN, + G_STRUCT_OFFSET(LassoLibAuthnRequest, ForceAuthn) }, + { "IsPassive", SNIPPET_CONTENT | SNIPPET_BOOLEAN, + G_STRUCT_OFFSET(LassoLibAuthnRequest, IsPassive) }, { "ProtocolProfile", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, ProtocolProfile) }, { "AssertionConsumerServiceID", SNIPPET_CONTENT, @@ -97,10 +101,6 @@ static struct XmlSnippet schema_snippets[] = { { "RequestAuthnContext", SNIPPET_NODE, G_STRUCT_OFFSET(LassoLibAuthnRequest, RequestAuthnContext) }, { "RelayState", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, RelayState) }, - { "ForceAuthn", SNIPPET_CONTENT | SNIPPET_BOOLEAN, - G_STRUCT_OFFSET(LassoLibAuthnRequest, ForceAuthn) }, - { "IsPassive", SNIPPET_CONTENT | SNIPPET_BOOLEAN, - G_STRUCT_OFFSET(LassoLibAuthnRequest, IsPassive) }, { "Scoping", SNIPPET_NODE, G_STRUCT_OFFSET(LassoLibAuthnRequest, Scoping) }, { "consent", SNIPPET_ATTRIBUTE, G_STRUCT_OFFSET(LassoLibAuthnRequest, consent) }, { NULL, 0, 0} |
