Skip to content

Commit 2003b3e

Browse files
Merge pull request #399 from kinde-oss/Fix/Small-doc-updates
Minor copy changes to SAML file and a workflow trigger file.
2 parents 7f9c928 + d070ec2 commit 2003b3e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/content/docs/authenticate/enterprise-connections/advanced-saml-configurations.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Only configure key attributes if supported by your IdP.
6262

6363
You can pass provider-specific parameters to an Identity Provider (IdP) during authentication. These are also known as 'upstream params'. The values your pass can either be static per connection or dynamic per user.
6464

65-
You can use upstream paramsto create a smoother sign in experience - by passing the email through, or to offer an account switcher (such as the Google account switcher) during sign in.
65+
You can use upstream params to create a smoother sign in experience - by passing the email through, or to offer an account switcher (such as the Google account switcher) during sign in.
6666

6767
Note that every identity provider has their own set of supported parameters and values, so you'll need to check their documentation to determine which URL parameters are supported.
68+
69+
For more information, see [Pass parameters to identity providers](/authenticate/auth-guides/pass-params-idp/).

src/content/docs/workflows/example-workflows/new-password-provided-workflow.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ Example
103103
```jsx
104104
const isMinCharacters = context.auth.firstPassword.length >= 50;
105105

106-
kinde.widget.invalidateFormField("p_password_1", "Provide a password at least 50 characters long");
106+
kinde.widget.invalidateFormField("p_first_password", "Provide a password at least 50 characters long");
107107

108108
```
109109
110110
The field names for this workflow are
111111
112112
| Field name | Description |
113113
| --- | --- |
114-
| `p_password_1` | The first password field |
115-
| `p_password_2` | The second password field, typically to check it matches the first to help prevent typos |
114+
| `p_first_password` | The first password field |
115+
| `p_second_password` | The second password field, typically to check it matches the first to help prevent typos |

0 commit comments

Comments
 (0)