From 1aa72d73bca321cbb4c7fd30777df952934c5a41 Mon Sep 17 00:00:00 2001 From: Pierre CORSINI <50719398+pierrecorsini@users.noreply.github.com> Date: Sun, 1 Oct 2023 22:59:27 +0100 Subject: [PATCH] Wrong class name corrected with : `\OCA\UserExternal\WebDavAuth' instead of `WebDAVAuth` Signed-off-by: Pierre CORSINI <50719398+pierrecorsini@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76f0001..269e35d 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ Add the following to your `config.php`: 'user_backends' => array( array( - 'class' => '\OCA\UserExternal\WebDAVAuth', + 'class' => '\OCA\UserExternal\WebDavAuth', 'arguments' => array('https://example.com/webdav'), ), ),