From c2f44a256f84890a78be792ffd91cd232d961f5d Mon Sep 17 00:00:00 2001 From: Abner Yang Date: Wed, 3 Apr 2024 23:20:12 -0400 Subject: [PATCH] Adds `allowCreate` documentation - credit to https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf for language - option was made configurable in https://github.com/tngan/samlify/pull/363 --- docs/sp-configuration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/sp-configuration.md b/docs/sp-configuration.md index 1fd3d217..b3c14f0f 100644 --- a/docs/sp-configuration.md +++ b/docs/sp-configuration.md @@ -63,6 +63,9 @@ const sp = new ServiceProvider({ #### Optional Parameters +- **allowCreate: Boolean**
+ Declare if identitiy provider is allowed, in the course of fulfilling the request, to create a new identifier to represent the principal, default to `false` + - **loginRequestTemplate: {context: String, attributes: Attributes}**
Customize the login request template, and user can reuse it in the callback function to do runtime interpolation. (See [more](/template))