core: pushing changes regarding MySQL ssl toggle that is now mandatory

This commit is contained in:
2024-11-12 10:53:02 -05:00
parent 65100920e3
commit b7a006f7ee
4 changed files with 10 additions and 2 deletions

View File

@ -175,6 +175,12 @@ class DatabaseConfig:
return CoreConfig.get_config_field(
self.__config, "core", "database", "protocol", default="mysql"
)
@property
def ssl_enabled(self) -> str:
return CoreConfig.get_config_field(
self.__config, "core", "database", "ssl_enabled", default=False
)
@property
def sha2_password(self) -> bool: