We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cbfba2 commit f91bfbaCopy full SHA for f91bfba
src/commons/authentication/oidc.rs
@@ -201,14 +201,14 @@ pub enum IdentityProviderHint {
201
pub struct ClientAuthenticationOptions {
202
/// A reference to the OIDC client credentials secret. The secret contains
203
/// the client id and secret.
204
- client_credentials_secret_ref: String,
+ pub client_credentials_secret_ref: String,
205
206
/// An optional list of extra scopes which get merged with the scopes
207
/// defined in the [`AuthenticationClass`][authclass].
208
///
209
/// [authclass]: crate::commons::authentication::AuthenticationClass
210
#[serde(default)]
211
- extra_scopes: Vec<String>,
+ pub extra_scopes: Vec<String>,
212
}
213
214
#[cfg(test)]
0 commit comments