feat: add elasticsearch menu (#257)

This commit is contained in:
innerpeacez 2023-04-13 17:08:00 +08:00 committed by GitHub
parent 49a5481fb0
commit ceae10cbfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 0 deletions

View File

@ -385,5 +385,6 @@ const msg = {
AWSGateway: "AWS API Gateway",
APIGateway: "API Gateway",
redis: "Redis",
elasticsearch: "Elasticsearch",
};
export default msg;

View File

@ -384,5 +384,6 @@ const msg = {
AWSGateway: "AWS API Gateway",
APIGateway: "API Gateway",
redis: "Redis",
elasticsearch: "Elasticsearch",
};
export default msg;

View File

@ -382,5 +382,6 @@ const msg = {
AWSGateway: "AWS API Gateway",
APIGateway: "API Gateway",
redis: "Redis",
elasticsearch: "Elasticsearch",
};
export default msg;

View File

@ -90,6 +90,22 @@ export default [
layer: "REDIS",
},
},
{
path: "/elasticsearch",
name: "Elasticsearch",
meta: {
title: "elasticsearch",
layer: "ELASTICSEARCH",
},
},
{
path: "/elasticsearch/tab/:activeTabIndex",
name: "ElasticsearchActiveTabIndex",
meta: {
notShow: true,
layer: "ELASTICSEARCH",
},
},
],
},
];