chore: fixing deprecation warnings for all the things that are in the monorepo

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-10-20 15:53:42 +02:00
parent 37ebea2d68
commit 1332a98a01
37 changed files with 55 additions and 128 deletions
+3 -11
View File
@@ -16,23 +16,15 @@
import { createRouteRef } from '@backstage/core-plugin-api';
const NoIcon = () => null;
export const gitOpsClusterListRoute = createRouteRef({
icon: NoIcon,
path: '/gitops-clusters',
title: 'GitOps Clusters',
id: 'gitops-clusters',
});
export const gitOpsClusterDetailsRoute = createRouteRef({
icon: NoIcon,
path: '/gitops-cluster/:owner/:repo',
title: 'GitOps Cluster details',
id: 'gitops-cluster/:owner/:repo',
params: ['owner', 'repo'],
});
export const gitOpsClusterCreateRoute = createRouteRef({
icon: NoIcon,
path: '/gitops-cluster-create',
title: 'GitOps Cluster create',
id: 'gitops-cluster-create',
});