mirror of
https://github.com/certd/certd.git
synced 2026-04-14 20:40:53 +08:00
42 lines
894 B
TypeScript
42 lines
894 B
TypeScript
export const certdResources = [
|
|
{
|
|
title: "证书自动化",
|
|
name: "certd",
|
|
path: "/certd",
|
|
redirect: "/certd/pipeline",
|
|
meta: {
|
|
icon: "ion:key-outline",
|
|
auth: true
|
|
},
|
|
children: [
|
|
{
|
|
title: "证书自动化流水线",
|
|
name: "pipeline",
|
|
path: "/certd/pipeline",
|
|
component: "/certd/pipeline/index.vue",
|
|
meta: {
|
|
icon: "ion:analytics-sharp"
|
|
}
|
|
},
|
|
{
|
|
title: "编辑流水线",
|
|
name: "pipelineEdit",
|
|
path: "/certd/pipeline/detail",
|
|
component: "/certd/pipeline/detail.vue",
|
|
meta: {
|
|
isMenu: false
|
|
}
|
|
},
|
|
{
|
|
title: "授权管理",
|
|
name: "access",
|
|
path: "/certd/access",
|
|
component: "/certd/access/index.vue",
|
|
meta: {
|
|
icon: "ion:disc-outline"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|