Add AWS DynanoDB menu (#237)

This commit is contained in:
yswdqz 2023-02-20 20:57:52 +08:00 committed by GitHub
parent b247ed1c24
commit 72060f8227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 0 deletions

View File

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

View File

@ -380,5 +380,6 @@ const msg = {
AWSCloud: "AWS Cloud", AWSCloud: "AWS Cloud",
AWSCloudEKS: "EKS", AWSCloudEKS: "EKS",
AWSCloudS3: "S3", AWSCloudS3: "S3",
AWSCloudDynamoDB: "DynamoDB",
}; };
export default msg; export default msg;

View File

@ -378,5 +378,6 @@ const msg = {
AWSCloud: "AWS云服务", AWSCloud: "AWS云服务",
AWSCloudEKS: "EKS", AWSCloudEKS: "EKS",
AWSCloudS3: "S3", AWSCloudS3: "S3",
AWSCloudDynamoDB: "DynamoDB",
}; };
export default msg; export default msg;

View File

@ -58,6 +58,22 @@ export default [
layer: "AWS_S3", layer: "AWS_S3",
}, },
}, },
{
path: "/aws-dynamodb",
name: "AWSCloudDynamoDB",
meta: {
title: "AWSCloudDynamoDB",
layer: "AWS_DYNAMODB",
},
},
{
path: "/aws-dynamodb/tab/:activeTabIndex",
name: "DynamoDBActiveTabIndex",
meta: {
notShow: true,
layer: "AWS_DYNAMODB",
},
},
], ],
}, },
]; ];

View File

@ -58,6 +58,22 @@ export default [
layer: "POSTGRESQL", layer: "POSTGRESQL",
}, },
}, },
{
path: "/aws-dynamodb",
name: "AWSCloudDynamoDB",
meta: {
title: "AWSCloudDynamoDB",
layer: "AWS_DYNAMODB",
},
},
{
path: "/aws-dynamodb/tab/:activeTabIndex",
name: "DynamoDBActiveTabIndex",
meta: {
notShow: true,
layer: "AWS_DYNAMODB",
},
},
], ],
}, },
]; ];