From 8b3e8450da39ae10f27e9f48cb8f9f5604a91a00 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 2 Jun 2026 06:40:04 +0200 Subject: [PATCH] sharing/doc: extend list with supported actions --- SHARING.md | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/SHARING.md b/SHARING.md index 6fd52791..df605d47 100644 --- a/SHARING.md +++ b/SHARING.md @@ -270,7 +270,8 @@ FeatureEnabledCollectionByToken=True PermittedCreateCollectionByToken=True SupportedConversions=(bday none) PermittedPropertiesOverlay=True -SupportedPropertiesOverlay=(C:calendar-description ICAL:calendar-color CR:addressbook-description INF:addressbook-color D:displayname) +SupportedPropertiesOverlay=(C:calendar-description ICAL:calendar-color CR:addressbook-description INF:addressbook-color D:displayname ICAL:calendar-order) +SupportedActions='{'config': {'conversion_bday_summary_template': 'str', 'conversion_bday_description_template': 'str', 'conversion_bday_alarm_trigger_template': 'str', 'conversion_bday_categories': 'str', 'conversion_bday_age_max': 'int'}}' ``` ###### json->json, parsed with jq @@ -285,9 +286,28 @@ curl -u user:$userpw --silent -H "accept: application/json" -d "" http://localho "PermittedCreateCollectionByMap": true, "FeatureEnabledCollectionByToken": true, "PermittedCreateCollectionByToken": true, - "SupportedConversions": ["bday", "none"], + "SupportedConversions": [ + "bday", + "none" + ], "PermittedPropertiesOverlay": true, - "SupportedPropertiesOverlay": ["C:calendar-description", "ICAL:calendar-color", "CR:addressbook-description", "INF:addressbook-color", "D:displayname"] + "SupportedPropertiesOverlay": [ + "C:calendar-description", + "ICAL:calendar-color", + "CR:addressbook-description", + "INF:addressbook-color", + "D:displayname", + "ICAL:calendar-order" + ], + "SupportedActions": { + "config": { + "conversion_bday_summary_template": "str", + "conversion_bday_description_template": "str", + "conversion_bday_alarm_trigger_template": "str", + "conversion_bday_categories": "str", + "conversion_bday_age_max": "int" + } + } } ```