mirror of
https://github.com/Kozea/Radicale.git
synced 2025-09-12 20:30:57 +00:00
Add authentication structure, with fake and htpasswd methods.
This commit is contained in:
parent
06843adca1
commit
1998dc3b08
6 changed files with 105 additions and 31 deletions
|
@ -27,6 +27,7 @@ configuration.
|
|||
|
||||
from radicale import config
|
||||
|
||||
_acl = __import__(config.get("acl", "type"), locals(), globals())
|
||||
|
||||
users = _acl.users
|
||||
def load():
|
||||
module = __import__("radicale.acl", globals(), locals(),
|
||||
[config.get("acl", "type")])
|
||||
return getattr(module, config.get("acl", "type"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue