|
@@ -1,4 +1,5 @@
|
|
import { ClusterName, TopicName } from 'redux/interfaces';
|
|
import { ClusterName, TopicName } from 'redux/interfaces';
|
|
|
|
+import { SchemaSubject } from '../generated-sources';
|
|
|
|
|
|
const clusterPath = (clusterName: ClusterName) => `/ui/clusters/${clusterName}`;
|
|
const clusterPath = (clusterName: ClusterName) => `/ui/clusters/${clusterName}`;
|
|
|
|
|
|
@@ -12,6 +13,10 @@ export const clusterConsumerGroupsPath = (clusterName: ClusterName) =>
|
|
`${clusterPath(clusterName)}/consumer-groups`;
|
|
`${clusterPath(clusterName)}/consumer-groups`;
|
|
export const clusterSchemasPath = (clusterName: ClusterName) =>
|
|
export const clusterSchemasPath = (clusterName: ClusterName) =>
|
|
`${clusterPath(clusterName)}/schemas`;
|
|
`${clusterPath(clusterName)}/schemas`;
|
|
|
|
+// export const clusterSchemaPath = (
|
|
|
|
+// clusterName: ClusterName,
|
|
|
|
+// schemaName: string
|
|
|
|
+// ) => `${clusterSchemaPath(clusterName)}/${schemaName}/latest`;
|
|
|
|
|
|
export const clusterTopicPath = (
|
|
export const clusterTopicPath = (
|
|
clusterName: ClusterName,
|
|
clusterName: ClusterName,
|