From 28657f81973919d0b34915bd95f960eaa13ac1c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 6 Oct 2020 21:34:25 +0200 Subject: [PATCH] use /users endpoint for dav/files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- storage/pkg/flagset/frontend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/pkg/flagset/frontend.go b/storage/pkg/flagset/frontend.go index b3f5696eb..dcada4d8b 100644 --- a/storage/pkg/flagset/frontend.go +++ b/storage/pkg/flagset/frontend.go @@ -42,7 +42,7 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag { // this can eg. be set to /eos/users &cli.StringFlag{ Name: "dav-files-namespace", - Value: "/oc/", + Value: "/users/", Usage: "Namespace prefix for the webdav /dav/files endpoint", EnvVars: []string{"DAV_FILES_NAMESPACE"}, Destination: &cfg.Reva.OCDav.DavFilesNamespace,