Declare dataflow route View surface

This commit is contained in:
2026-07-28 21:04:55 +02:00
parent e54225a86e
commit 8c2b6035cc

View File

@@ -16,6 +16,7 @@ from govoplan_core.core.dataflows import (
from govoplan_core.core.modules import (
DocumentationTopic,
FrontendModule,
FrontendRoute,
MigrationSpec,
ModuleInterfaceProvider,
ModuleInterfaceRequirement,
@@ -302,6 +303,14 @@ manifest = ModuleManifest(
frontend=FrontendModule(
module_id=MODULE_ID,
package_name="@govoplan/dataflow-webui",
routes=(
FrontendRoute(
path="/dataflow",
component="DataflowPage",
required_any=(READ_SCOPE, ADMIN_SCOPE),
order=72,
),
),
nav_items=(
NavItem(
path="/dataflow",