From b8c2bc29ec882652c25bdfe726791ab47666c524 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 1 Mar 2025 13:16:57 +0100 Subject: [PATCH] display internal authentication types in online help --- radicale/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/config.py b/radicale/config.py index 6a218160..7c279b32 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -203,7 +203,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ ("auth", OrderedDict([ ("type", { "value": "none", - "help": "authentication method", + "help": "authentication method (" + "|".join(auth.INTERNAL_TYPES) + ")", "type": str_or_callable, "internal": auth.INTERNAL_TYPES}), ("cache_logins", {