fix(manifest): normalize distribution list contract ids

This commit is contained in:
2026-07-20 20:01:50 +02:00
parent c7bea69e26
commit 1444e50d8b
4 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -43,7 +43,7 @@ ROLE_TEMPLATES = (
DOCUMENTATION = (
DocumentationTopic(
id="dist-lists.boundary",
id=f"{MODULE_ID}.boundary",
title="Distribution list boundary",
summary="Distribution lists model operational Verteiler separately from address-book lists and workflow Umlauf execution.",
body=(
@@ -81,9 +81,9 @@ manifest = ModuleManifest(
),
optional_capabilities=(CAPABILITY_AUTH_PRINCIPAL_RESOLVER, CAPABILITY_AUTH_PERMISSION_EVALUATOR),
provides_interfaces=(
ModuleInterfaceProvider(name="distLists.source", version=MODULE_VERSION),
ModuleInterfaceProvider(name="distLists.expand", version=MODULE_VERSION),
ModuleInterfaceProvider(name="distLists.writer", version=MODULE_VERSION),
ModuleInterfaceProvider(name="dist_lists.source", version=MODULE_VERSION),
ModuleInterfaceProvider(name="dist_lists.expand", version=MODULE_VERSION),
ModuleInterfaceProvider(name="dist_lists.writer", version=MODULE_VERSION),
),
permissions=PERMISSIONS,
role_templates=ROLE_TEMPLATES,