This commit is contained in:
Simon Bihel 2022-04-19 13:40:07 +01:00
parent c044ecabd1
commit f71f211923
No known key found for this signature in database
GPG Key ID: B7013150BEAA28FD

View File

@ -227,7 +227,7 @@ async fn client_update(
bearer: Option<TypedHeader<Authorization<Bearer>>>,
Extension(redis_client): Extension<RedisClient>,
) -> Result<(), CustomError> {
Ok(oidc::client_update(client_id, payload, bearer.map(|b| b.0 .0), &redis_client).await?)
oidc::client_update(client_id, payload, bearer.map(|b| b.0 .0), &redis_client).await
}
async fn client_delete(