mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import { navigate } from "../../navigation";
|
|
import { commandRegistry } from "../../../extensions/registries/command-registry";
|
|
import { nodesURL } from "./nodes.route";
|
|
|
|
commandRegistry.add({
|
|
id: "cluster.viewNodes",
|
|
title: "Cluster: View Nodes",
|
|
scope: "cluster",
|
|
action: () => navigate(nodesURL())
|
|
});
|