@backstage-community/plugin-gitops-profiles
Version:
A Backstage plugin that helps you manage GitOps profiles
16 lines (13 loc) • 465 B
JavaScript
import { createRouteRef } from '@backstage/core-plugin-api';
const gitOpsClusterListRoute = createRouteRef({
id: "gitops-clusters"
});
const gitOpsClusterDetailsRoute = createRouteRef({
id: "gitops-cluster:details",
params: ["owner", "repo"]
});
const gitOpsClusterCreateRoute = createRouteRef({
id: "gitops-cluster:create"
});
export { gitOpsClusterCreateRoute, gitOpsClusterDetailsRoute, gitOpsClusterListRoute };
//# sourceMappingURL=routes.esm.js.map