chore: fixed better namespacing for the routeRefs

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-11-17 20:43:14 +01:00
parent 7c55fae208
commit 06065c6003
8 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -17,14 +17,14 @@
import { createRouteRef } from '@backstage/core-plugin-api';
export const rootRouteRef = createRouteRef({
id: 'techdocs-index-page',
id: 'techdocs:index-page',
});
export const rootDocsRouteRef = createRouteRef({
id: 'techdocs-reader-page',
id: 'techdocs:reader-page',
params: ['namespace', 'kind', 'name'],
});
export const rootCatalogDocsRouteRef = createRouteRef({
id: 'catalog-techdocs-reader-view',
id: 'techdocs:catalog-reader-view',
});