Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,22 @@
enable = true
```

{% if is_version == "7.1.0" or is_version == "next" %}
{% if is_version == "7.1.0" or is_version == "7.2.0" or is_version == "next" %}
4. To ensure the custom local authenticator appears as a first-factor option in the {{ product_name }} Console login flow UI, add the following configuration to the `<IS_HOME>/repository/conf/deployment.toml` file.

``` toml
[console.ui]
login_flow_custom_first_factor_authenticators = [ "SampleLocalAuthenticator" ]
```
{% endif %}

Check failure on line 80 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Headings should be surrounded by blank lines

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:80 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Above] [Context: "{% endif %}"] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md022.md

Check failure on line 80 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Heading style

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:80 MD003/heading-style Heading style [Expected: atx; Actual: setext] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md003.md
---

## Configure the Identity Server

Check failure on line 83 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Disallow consecutive headings

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:83 no-consecutive-headings Disallow consecutive headings [Consecutive headings are not allowed.] [Context: "## Configure the Identity Server"]

This section guides you on how to configure the identity server to use the custom local authenticator.

### Prerequisites

Check failure on line 87 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Headings should be surrounded by blank lines

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:87 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: "### Prerequisites"] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md022.md
- You need to [set up the sample]({{base_path}}/get-started/try-samples/qsg-oidc-webapp-java-ee) application.

Check failure on line 88 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Lists should be surrounded by blank lines

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:88 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "- You need to [set up the samp..."] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md032.md

### Configure the application with the custom local authenticator

Expand Down Expand Up @@ -130,14 +130,14 @@

3. Add a telephone number to the **Mobile** field and click **Next**.

5. Add the user to a group, if necessary, and click **Next**.

Check failure on line 133 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Ordered list item prefix

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:133:1 MD029/ol-prefix Ordered list item prefix [Expected: 4; Actual: 5; Style: 1/2/3] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md029.md

6. Assign the user a role, if necessary, and click **Next**.

Check failure on line 135 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Ordered list item prefix

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:135:1 MD029/ol-prefix Ordered list item prefix [Expected: 5; Actual: 6; Style: 1/2/3] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md029.md

7. Review the summary and click **Finish**.

Check failure on line 137 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Ordered list item prefix

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:137:1 MD029/ol-prefix Ordered list item prefix [Expected: 6; Actual: 7; Style: 1/2/3] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md029.md

---
## Try it out

Check failure on line 140 in en/includes/references/extend/authentication/write-a-custom-local-authenticator.md

View workflow job for this annotation

GitHub Actions / lint

Headings should be surrounded by blank lines

en/includes/references/extend/authentication/write-a-custom-local-authenticator.md:140 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Above] [Context: "## Try it out"] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md022.md

1. Access the application URL.

Expand Down
Loading