diff --git a/copyparty/authsrv.py b/copyparty/authsrv.py index 19887e38..f8a953e6 100644 --- a/copyparty/authsrv.py +++ b/copyparty/authsrv.py @@ -902,7 +902,6 @@ class AuthSrv(object): mount: dict[str, str], daxs: dict[str, AXS], mflags: dict[str, dict[str, Any]], - only_if_exist: bool = False, ) -> tuple[str, str]: src = os.path.expandvars(os.path.expanduser(src)) src = absreal(src) @@ -923,9 +922,6 @@ class AuthSrv(object): raise Exception(BAD_CFG) if not bos.path.isdir(src): - if only_if_exist: - return ("", "") - self.log("warning: filesystem-path does not exist: {}".format(src), 3) mount[dst] = src diff --git a/docs/TODO.md b/docs/TODO.md index befcedf4..b199f584 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -7,9 +7,6 @@ a living list of upcoming features / fixes / changes, very roughly in order of p * reverseproxy/cloudflare: ensure cloudflare does not terminate https * docker: suggest putting hists in /cfg/hists/ -* [github issue #62](https://github.com/9001/copyparty/issues/62) - IdP / single-sign-on powered by a local identity provider service which is possibly hooked up to ldap or an oauth service - * persist autogenerated volumes for db-init + nullmapping on next startup (`_map_volume` += `only_if_exist`) - * download accelerator * definitely download chunks in parallel * maybe resumable downloads (chrome-only, jank api)