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

66 lines
1.3 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: "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",
// },
{
title: "TrainingScriptGroup",
path: "/TrainingScriptGroup",
value: "TrainingScriptGroup",
icon: "mdi-file-code-outline",
},
{
title: "DataSetGroup",
path: "/DataGroup",
value: "DataGroup",
icon: "mdi-database-outline",
},
],
adminMenuItem: [
{
title: "Projects",
path: "/project",
value: "project",
icon: "mdi-briefcase",
},
{
title: "Users",
path: "/users",
value: "users",
icon: "mdi-account-multiple",
},
{
title: "관리자",
path: "/system-status",
value: "admin",
icon: "mdi-cog",
},
],
};