remove stray dbg!

This commit is contained in:
Lennart
2025-12-31 15:57:56 +01:00
parent 951a1e4bdc
commit 7b154adec3
2 changed files with 0 additions and 3 deletions

View File

@@ -53,7 +53,6 @@ pub async fn route_delete<R: ResourceService>(
} }
if let Some(if_match) = if_match { if let Some(if_match) = if_match {
dbg!(&if_match);
if !resource.satisfies_if_match(&if_match) { if !resource.satisfies_if_match(&if_match) {
// Precondition failed // Precondition failed
return Err(crate::Error::PreconditionFailed.into()); return Err(crate::Error::PreconditionFailed.into());

View File

@@ -104,9 +104,7 @@ pub async fn route_post_oidc(
TypedHeader(host): TypedHeader<Host>, TypedHeader(host): TypedHeader<Host>,
Form(GetOidcForm { redirect_uri }): Form<GetOidcForm>, Form(GetOidcForm { redirect_uri }): Form<GetOidcForm>,
) -> Result<Response, OidcError> { ) -> Result<Response, OidcError> {
dbg!(&host);
let callback_uri = format!("https://{host}/frontend/login/oidc/callback"); let callback_uri = format!("https://{host}/frontend/login/oidc/callback");
dbg!(&callback_uri);
let http_client = get_http_client(); let http_client = get_http_client();
let oidc_client = get_oidc_client( let oidc_client = get_oidc_client(