SETTINGS.webdav_disable_check
This commit is contained in:
parent
fb5ca7bcda
commit
6b8d6f8bc7
2 changed files with 5 additions and 3 deletions
|
@ -16,9 +16,10 @@ from .async_helpers import run_in_executor
|
||||||
from .settings import SETTINGS
|
from .settings import SETTINGS
|
||||||
|
|
||||||
_WEBDAV_CLIENT = WebDAVclient({
|
_WEBDAV_CLIENT = WebDAVclient({
|
||||||
"webdav_hostname": SETTINGS.webdav.url,
|
"webdav_hostname": SETTINGS.webdav.url,
|
||||||
"webdav_login": SETTINGS.webdav.username,
|
"webdav_login": SETTINGS.webdav.username,
|
||||||
"webdav_password": SETTINGS.webdav.password,
|
"webdav_password": SETTINGS.webdav.password,
|
||||||
|
"disable_check": SETTINGS.webdav_disable_check,
|
||||||
})
|
})
|
||||||
|
|
||||||
_logger = getLogger(__name__)
|
_logger = getLogger(__name__)
|
||||||
|
|
|
@ -64,6 +64,7 @@ class Settings(BaseSettings):
|
||||||
redoc_url: Optional[str] = None if production_mode else "/redoc"
|
redoc_url: Optional[str] = None if production_mode else "/redoc"
|
||||||
|
|
||||||
webdav: DavSettings = DavSettings()
|
webdav: DavSettings = DavSettings()
|
||||||
|
webdav_disable_check: bool = False
|
||||||
webdav_retries: int = 20
|
webdav_retries: int = 20
|
||||||
webdav_prefix: str = "/ovdashboard"
|
webdav_prefix: str = "/ovdashboard"
|
||||||
config_path: str = "config.txt"
|
config_path: str = "config.txt"
|
||||||
|
|
Loading…
Reference in a new issue