We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c08d0 commit 249a687Copy full SHA for 249a687
src/webserver/oidc.rs
@@ -159,7 +159,6 @@ where
159
#[derive(Clone)]
160
pub struct OidcService<S> {
161
service: S,
162
- app_state: web::Data<AppState>,
163
config: Arc<OidcConfig>,
164
oidc_client: Arc<OidcClient>,
165
http_client: Arc<AwcHttpClient>,
@@ -177,7 +176,6 @@ impl<S> OidcService<S> {
177
176
let client: OidcClient = make_oidc_client(&config, provider_metadata)?;
178
Ok(Self {
179
service,
180
- app_state: web::Data::clone(app_state),
181
config,
182
oidc_client: Arc::new(client),
183
http_client: Arc::new(http_client),
0 commit comments