Initial version of ldap authentication backend.

This commit is contained in:
Peter Varkoly
2022-02-19 11:57:58 +01:00
parent 47e42a46c1
commit 2dc0fd29dc
4 changed files with 156 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ from typing import Sequence, Tuple, Union
from radicale import config, types, utils
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
"htpasswd")
"htpasswd", "ldap")
def load(configuration: "config.Configuration") -> "BaseAuth":