mirror of
https://github.com/lennart-k/rustical.git
synced 2026-01-30 11:48:18 +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 {
|
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());
|
||||||
|
|||||||
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user