Skip to content

Commit

Permalink
fix generateDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
strehle committed Aug 5, 2021
1 parent c70b9f6 commit 4b0ff57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class IdentityProviderEndpointDocs extends EndpointDocs {
ATTRIBUTE_MAPPING_CUSTOM_ATTRIBUTES_DEPARTMENT
};

private FieldDescriptor relyingPartySecret = fieldWithPath("config.relyingPartySecret").optional().type(STRING).description("The client secret of the relying party at the external OAuth provider. If not set, the external OAuth client is treated as public client, then the flow is protected with [PKCE](https://tools.ietf.org/html/rfc7636) using code challenge method `S256`.");
private FieldDescriptor relyingPartySecret = fieldWithPath("config.relyingPartySecret").constrained("Required if the external client is confidential.").type(STRING).description("The client secret of the relying party at the external OAuth provider. If not set, the external OAuth client is treated as public client, then the flow is protected with [PKCE](https://tools.ietf.org/html/rfc7636) using code challenge method `S256`.");

private static InMemoryLdapServer ldapContainer;

Expand Down

0 comments on commit 4b0ff57

Please sign in to comment.