From 8329cfa660af6549302101ee418248e8b9f4e1fb Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 28 May 2026 22:04:31 +0200 Subject: [PATCH] sharing/bday/template: config parser --- radicale/config.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/radicale/config.py b/radicale/config.py index 394dac97..4442b323 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -593,7 +593,16 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ ("default_permissions_create_map", { "value": "r", "help": "default permissions for map-based sharing", - "type": rights_permission})])), + "type": rights_permission}), + ("conversion_bday_summary_template", { + "value": "{{n:f} {n:g} {n:a}|{fn}|{nickname}} (BDAY)", + "help": "conversion bday summary template", + "type": str}), + ("conversion_bday_description_template", { + "value": "BDAY={year}-{month}-{day}", + "help": "conversion bday description template", + "type": str}), + ])), ("hook", OrderedDict([ ("type", { "value": "none",