generic_oidc.rs 263 B

123456789101112
  1. use serde::Deserialize;
  2. #[derive(Debug, Clone, Deserialize)]
  3. #[serde(deny_unknown_fields)]
  4. pub struct OIDCConfig {
  5. pub name: String,
  6. pub base_url: String,
  7. pub client_id: String,
  8. pub client_secret: Option<String>,
  9. }
  10. pub struct OIDCAuthenticator;