You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autoflow-web-console/src/utils/menuUtils.js

53 lines
1.1 KiB

export const menuUtils = {
menuItem: [
{
title: "Home",
path: "/home",
value: "home",
icon: "mdi-monitor-multiple",
},
{
title: "Workflows",
path: "/workflows",
value: "workflows",
icon: "mdi-code-braces",
},
{
title: "Workflow Step Config",
path: "/workflow-step-config",
value: "workflow-step-config",
icon: "mdi-hammer-wrench",
},
{
title: "Run",
path: "/run",
value: "run",
icon: "mdi-format-list-bulleted-square",
depth: [
{ title: "Experiment", path: "/run/experiment" },
{ title: "Executions", path: "/run/executions" },
],
},
{
title: "Deployment",
path: "/deployment",
value: "deployment",
icon: "mdi-folder-search",
},
],
adminMenuItem: [
{
title: "Training Script",
path: "/training-script",
value: "training-script",
icon: "mdi-account",
},
{
title: "Datasets",
path: "/datasets",
value: "datasets",
icon: "mdi-account",
},
],
};