mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* fix cluster settings page layout Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * refactor cluster settings to pluggable entity settings Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix gh actions network timeout on yarn install Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * review changes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
import type { RouteProps } from "react-router";
|
|
import { buildURL } from "../../../common/utils/buildUrl";
|
|
|
|
export interface EntitySettingsRouteParams {
|
|
entityId: string;
|
|
}
|
|
|
|
export const entitySettingsRoute: RouteProps = {
|
|
path: `/entity/:entityId/settings`,
|
|
};
|
|
|
|
export const entitySettingsURL = buildURL<EntitySettingsRouteParams>(entitySettingsRoute.path);
|