From a826b99319fe56016e17563113ee2f58c6daa3f9 Mon Sep 17 00:00:00 2001 From: Doug Date: Wed, 7 May 2025 10:21:40 +0100 Subject: [PATCH] Update the login schema docs. --- crates/config/src/sections/upstream_oauth2.rs | 2 +- docs/config.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/config/src/sections/upstream_oauth2.rs b/crates/config/src/sections/upstream_oauth2.rs index 883d29c1d..cf02aaa15 100644 --- a/crates/config/src/sections/upstream_oauth2.rs +++ b/crates/config/src/sections/upstream_oauth2.rs @@ -566,7 +566,7 @@ pub struct Provider { #[serde(default, skip_serializing_if = "BTreeMap::is_empty")] pub additional_authorization_parameters: BTreeMap, - /// Whether the login_hint should be forwarded to the provider in the + /// Whether the `login_hint` should be forwarded to the provider in the /// authorization request. /// /// Defaults to `false`. diff --git a/docs/config.schema.json b/docs/config.schema.json index d70f433ee..06fa0e768 100644 --- a/docs/config.schema.json +++ b/docs/config.schema.json @@ -2120,7 +2120,7 @@ } }, "forward_login_hint": { - "description": "Whether the login_hint should be forwarded to the provider in the authorization request.\n\nDefaults to `false`.", + "description": "Whether the `login_hint` should be forwarded to the provider in the authorization request.\n\nDefaults to `false`.", "default": false, "type": "boolean" }