Adopt the shared interface pattern language

This commit is contained in:
2026-08-04 08:21:50 +02:00
parent 06f93f4f7a
commit 629f76440b
7 changed files with 102 additions and 1 deletions
@@ -1,6 +1,7 @@
from __future__ import annotations
from govoplan_core.core.modules import (
DocumentationLink,
DocumentationTopic,
FrontendModule,
FrontendRoute,
@@ -109,6 +110,13 @@ manifest = ModuleManifest(
documentation_types=("admin", "user"),
audience=("operator", "module_admin", "power_user", "product_owner"),
related_modules=("workflow_engine", "views", "policy", "audit"),
links=(
DocumentationLink(
label="Workflow interface pattern audit",
href="govoplan-workflow/docs/INTERFACE_PATTERN_MIGRATION.md",
kind="repository",
),
),
order=76,
),
),