fix(unit-tests): add missing fields to unit tests

This commit is contained in:
aaldebs99 2025-10-11 16:21:26 +00:00
parent 0032a30bb1
commit f7d6eeac6f
2 changed files with 10 additions and 2 deletions

View File

@ -204,7 +204,11 @@ pub fn create_test_config() -> Config {
oidc_client_secret: None,
oidc_issuer_url: None,
oidc_redirect_uri: None,
oidc_auto_register: true,
// Authentication Configuration
allow_local_auth: true,
// S3 Configuration (disabled for tests by default)
s3_enabled: false,
s3_config: None,

View File

@ -835,7 +835,11 @@ impl TestConfigBuilder {
oidc_client_secret: None,
oidc_issuer_url: None,
oidc_redirect_uri: None,
oidc_auto_register: true,
// Authentication Configuration
allow_local_auth: true,
// S3 Configuration
s3_enabled: false,
s3_config: None,