Declare datasource route View surface

This commit is contained in:
2026-07-28 21:04:55 +02:00
parent 6294362025
commit 3c38b1cb00

View File

@@ -19,6 +19,7 @@ from govoplan_core.core.module_guards import (
from govoplan_core.core.modules import (
DocumentationTopic,
FrontendModule,
FrontendRoute,
MigrationSpec,
ModuleContext,
ModuleInterfaceProvider,
@@ -209,6 +210,14 @@ manifest = ModuleManifest(
frontend=FrontendModule(
module_id=MODULE_ID,
package_name="@govoplan/datasources-webui",
routes=(
FrontendRoute(
path="/datasources",
component="DatasourcesPage",
required_any=(CATALOGUE_READ_SCOPE, ADMIN_SCOPE),
order=70,
),
),
nav_items=(
NavItem(
path="/datasources",