4c50c0aae6
- Implemented `google_drive_callback.html` for processing Google Drive authorization, including UI for success and error states. - Added JavaScript functionality for exchanging authorization codes, saving settings, and handling folder selection. - Created `google_drive_callback_error.html` to display error messages during the authorization process.
22 lines
787 B
Python
22 lines
787 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuration validation for the application.
|
|
This file serves as a backward-compatible interface to the config_validator package.
|
|
"""
|
|
|
|
# Import and re-export all functions from the new package
|
|
from app.utils.config_validator.validators import validate_email_config, validate_storage_configs, check_all_configs
|
|
from app.utils.config_validator.masking import mask_sensitive_value
|
|
from app.utils.config_validator.providers import get_provider_status
|
|
from app.utils.config_validator.settings_display import get_settings_for_display, dump_all_settings
|
|
|
|
__all__ = [
|
|
'validate_email_config',
|
|
'validate_storage_configs',
|
|
'mask_sensitive_value',
|
|
'get_provider_status',
|
|
'get_settings_for_display',
|
|
'dump_all_settings',
|
|
'check_all_configs'
|
|
]
|