From a3a13d265bf468356b8867304e4bf3efe3b083dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simonyi=20Gerg=C5=91?= <28359278+gergosimonyi@users.noreply.github.com> Date: Thu, 29 Aug 2024 16:12:31 +0200 Subject: [PATCH] website/docs: fix outdated docs and typos (#11020) * fix typo * fix out of date docs on Go client * remove completed issue from known issues list * fix typo --- .../admin/policies/event_matcher/EventMatcherPolicyForm.ts | 2 +- website/developer-docs/api/making-schema-changes.md | 4 ++-- website/docs/flow/stages/authenticator_validate/index.md | 2 +- website/docs/policies/expression.mdx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/admin/policies/event_matcher/EventMatcherPolicyForm.ts b/web/src/admin/policies/event_matcher/EventMatcherPolicyForm.ts index 809b275bcf03..5b984100a206 100644 --- a/web/src/admin/policies/event_matcher/EventMatcherPolicyForm.ts +++ b/web/src/admin/policies/event_matcher/EventMatcherPolicyForm.ts @@ -117,7 +117,7 @@ export class EventMatcherPolicyForm extends BasePolicyForm { />

${msg( - "Matches Event's Client IP (strict matching, for network matching use an Expression Policy.", + "Matches Event's Client IP (strict matching, for network matching use an Expression Policy).", )}

diff --git a/website/developer-docs/api/making-schema-changes.md b/website/developer-docs/api/making-schema-changes.md index e9b70edfe242..25ae8fbf1c4d 100644 --- a/website/developer-docs/api/making-schema-changes.md +++ b/website/developer-docs/api/making-schema-changes.md @@ -8,9 +8,9 @@ This will update the `schema.yml` file in the root of the repository. ## Building the Go Client -The Go client is used by the Outpost to communicate with the backend authentik server. To build the go client, run `make gen-outpost`. +The Go client is used by the Outpost to communicate with the backend authentik server. To build the go client, run `make gen-client-go`. -The generated files are stored in `/api` in the root of the repository. +The generated files are stored in `/gen-go-api` in the root of the repository. ## Building the Web Client diff --git a/website/docs/flow/stages/authenticator_validate/index.md b/website/docs/flow/stages/authenticator_validate/index.md index 33f163051e41..f509e2010e03 100644 --- a/website/docs/flow/stages/authenticator_validate/index.md +++ b/website/docs/flow/stages/authenticator_validate/index.md @@ -38,7 +38,7 @@ Requires authentik 2021.12.4 ::: :::caution -Firefox has some known issues regarding FIDO (see https://bugzilla.mozilla.org/show_bug.cgi?id=1530370) and TouchID (see https://bugzilla.mozilla.org/show_bug.cgi?id=1536482) +Firefox has some known issues regarding TouchID (see https://bugzilla.mozilla.org/show_bug.cgi?id=1536482) ::: Passwordless authentication currently only supports WebAuthn devices, like security keys and biometrics. For an alternate passwordless setup, see [Password stage](../password/index.md#passwordless-login), which supports other types. diff --git a/website/docs/policies/expression.mdx b/website/docs/policies/expression.mdx index 246ff56a58d3..db2f2775d9b7 100644 --- a/website/docs/policies/expression.mdx +++ b/website/docs/policies/expression.mdx @@ -82,7 +82,7 @@ import Objects from "../expressions/_objects.md"; return context["geoip"]["continent"] == "EU" ``` -- `asn`: ASN dictionary. The follow fields are available: +- `asn`: ASN dictionary. The following fields are available: :::info For basic ASN matching, consider using a [GeoIP policy](index.md#geoip-policy).