From 1ab2f6cefb8be4f827d644fe142db4f7b1e1c93a Mon Sep 17 00:00:00 2001 From: Unrud Date: Mon, 29 May 2017 02:04:31 +0200 Subject: [PATCH] Correct wrong module paths --- plugins.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins.md b/plugins.md index a9a17a88..7ee7e254 100644 --- a/plugins.md +++ b/plugins.md @@ -59,11 +59,11 @@ Radicale's source code for more information. ## Rights management plugins This plugin type is used to check if a user has access to a path. The module must contain a class `Rights` that extends -`radicale.auth.BaseAuth`. Take a look at the file `radicale/rights.py` in +`radicale.rights.BaseRights`. Take a look at the file `radicale/rights.py` in Radicale's source code for more information. ## Storage plugins This plugin is used to store collections and items. The module must contain a class `Storage` that extends -`radicale.auth.BaseStorage`. Take a look at the file `radicale/storage.py` in -Radicale's source code for more information. +`radicale.storage.BaseStorage`. Take a look at the file `radicale/storage.py` +in Radicale's source code for more information.