oidc: small cosmetics + typos

This commit is contained in:
lafleur 2025-05-10 21:11:12 +02:00 committed by Jade Ellis
parent aa2575be3e
commit a76480be48
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2
3 changed files with 6 additions and 4 deletions

View file

@ -9,7 +9,7 @@ use ruma::{
self,
msc2965::{
AccountManagementAction, AuthorizationServerMetadata, CodeChallengeMethod,
GrantType, Prompt, Response, ResponseMode, ResponseType,
GrantType, Prompt, ResponseMode, ResponseType,
},
},
error::{
@ -28,8 +28,8 @@ use crate::{Ruma, RumaResponse, conduwuit::Error};
/// with 404/M_UNRECOGNIZED.
pub(crate) async fn get_auth_metadata(
State(services): State<crate::State>,
_body: Ruma<get_authorization_server_metadata::msc2965::Request>,
) -> Result<RumaResponse<Response>> {
_body: Ruma<msc2965::Request>,
) -> Result<RumaResponse<msc2965::Response>> {
let unrecognized_error = Err(Error::Ruma(ClientError::new(
http::StatusCode::NOT_FOUND,
ClientErrorBody::Standard {
@ -52,6 +52,7 @@ pub(crate) async fn get_auth_metadata(
.unwrap(),
);
// Build up metadata with primitives from ruma::api::client::msc2965.
let metadata = AuthorizationServerMetadata {
issuer: issuer.clone(),
authorization_endpoint: issuer

View file

@ -275,7 +275,7 @@ pub fn check(config: &Config) -> Result {
if auth.enable_oidc_login && config.well_known.client.is_none() {
return Err!(Config(
"auth.enable_oidc_login",
"Oidc authentication is enabled but the well-known client is not set."
"OIDC authentication is enabled but the well-known client is not set."
));
}
}

View file

@ -103,6 +103,7 @@ pub struct Config {
#[serde(default)]
pub tls: TlsConfig,
// external structure; separate section
pub auth: Option<AuthConfig>,
/// The UNIX socket conduwuit will listen on.