mirror of
https://github.com/lennart-k/rustical.git
synced 2026-01-29 23:58:16 +00:00
remove stray dbg!
This commit is contained in:
@@ -53,7 +53,6 @@ pub async fn route_delete<R: ResourceService>(
|
||||
}
|
||||
|
||||
if let Some(if_match) = if_match {
|
||||
dbg!(&if_match);
|
||||
if !resource.satisfies_if_match(&if_match) {
|
||||
// Precondition failed
|
||||
return Err(crate::Error::PreconditionFailed.into());
|
||||
|
||||
@@ -104,9 +104,7 @@ pub async fn route_post_oidc(
|
||||
TypedHeader(host): TypedHeader<Host>,
|
||||
Form(GetOidcForm { redirect_uri }): Form<GetOidcForm>,
|
||||
) -> Result<Response, OidcError> {
|
||||
dbg!(&host);
|
||||
let callback_uri = format!("https://{host}/frontend/login/oidc/callback");
|
||||
dbg!(&callback_uri);
|
||||
|
||||
let http_client = get_http_client();
|
||||
let oidc_client = get_oidc_client(
|
||||
|
||||
Reference in New Issue
Block a user