mirror of
https://github.com/TECHNOFAB11/jwt-authorizer.git
synced 2025-12-12 08:00:07 +01:00
Run cargo fmt
This commit is contained in:
parent
7a5d7ee03b
commit
7893f8f775
1 changed files with 9 additions and 1 deletions
|
|
@ -243,6 +243,14 @@ where
|
||||||
pub async fn build(self) -> Result<Authorizer<C>, InitError> {
|
pub async fn build(self) -> Result<Authorizer<C>, InitError> {
|
||||||
let val = self.validation.unwrap_or_default();
|
let val = self.validation.unwrap_or_default();
|
||||||
|
|
||||||
Authorizer::build(self.key_source_type, self.claims_checker, self.refresh, val, self.jwt_source, self.http_client).await
|
Authorizer::build(
|
||||||
|
self.key_source_type,
|
||||||
|
self.claims_checker,
|
||||||
|
self.refresh,
|
||||||
|
val,
|
||||||
|
self.jwt_source,
|
||||||
|
self.http_client,
|
||||||
|
)
|
||||||
|
.await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue