Skip to content

Commit f91bfba

Browse files
committed
fix: Change field visibility
1 parent 5cbfba2 commit f91bfba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commons/authentication/oidc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,14 @@ pub enum IdentityProviderHint {
201201
pub struct ClientAuthenticationOptions {
202202
/// A reference to the OIDC client credentials secret. The secret contains
203203
/// the client id and secret.
204-
client_credentials_secret_ref: String,
204+
pub client_credentials_secret_ref: String,
205205

206206
/// An optional list of extra scopes which get merged with the scopes
207207
/// defined in the [`AuthenticationClass`][authclass].
208208
///
209209
/// [authclass]: crate::commons::authentication::AuthenticationClass
210210
#[serde(default)]
211-
extra_scopes: Vec<String>,
211+
pub extra_scopes: Vec<String>,
212212
}
213213

214214
#[cfg(test)]

0 commit comments

Comments
 (0)