Add AWS API Gateway menu (#248)

This commit is contained in:
pg.yang 2023-03-26 10:01:05 +08:00 committed by GitHub
parent 1d189e82a7
commit 5973632f0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 0 deletions

View File

@ -382,5 +382,6 @@ const msg = {
AWSCloudEKS: "EKS", AWSCloudEKS: "EKS",
AWSCloudS3: "S3", AWSCloudS3: "S3",
AWSCloudDynamoDB: "DynamoDB", AWSCloudDynamoDB: "DynamoDB",
AWSGateway: "AWS Gateway",
}; };
export default msg; export default msg;

View File

@ -381,5 +381,6 @@ const msg = {
AWSCloudEKS: "EKS", AWSCloudEKS: "EKS",
AWSCloudS3: "S3", AWSCloudS3: "S3",
AWSCloudDynamoDB: "DynamoDB", AWSCloudDynamoDB: "DynamoDB",
AWSGateway: "AWS Gateway",
}; };
export default msg; export default msg;

View File

@ -379,5 +379,6 @@ const msg = {
AWSCloudEKS: "EKS", AWSCloudEKS: "EKS",
AWSCloudS3: "S3", AWSCloudS3: "S3",
AWSCloudDynamoDB: "DynamoDB", AWSCloudDynamoDB: "DynamoDB",
AWSGateway: "AWS Gateway",
}; };
export default msg; export default msg;

View File

@ -74,6 +74,22 @@ export default [
layer: "AWS_DYNAMODB", layer: "AWS_DYNAMODB",
}, },
}, },
{
path: "/aws-gateway",
name: "AWSGateway",
meta: {
title: "AWSGateway",
layer: "AWS_GATEWAY",
},
},
{
path: "/aws-gateway/tab/:activeTabIndex",
name: "GatewayActiveTabIndex",
meta: {
notShow: true,
layer: "AWS_GATEWAY",
},
},
], ],
}, },
]; ];

View File

@ -42,6 +42,22 @@ export default [
layer: "APISIX", layer: "APISIX",
}, },
}, },
{
path: "/aws-gateway",
name: "AWSGateway",
meta: {
title: "AWSGateway",
layer: "AWS_GATEWAY",
},
},
{
path: "/aws-gateway/tab/:activeTabIndex",
name: "GatewayActiveTabIndex",
meta: {
notShow: true,
layer: "AWS_GATEWAY",
},
},
], ],
}, },
]; ];