Compare commits

..

No commits in common. "e265d0b80ee27b13c4012a90777b0c77399db1fb" and "5a5ef7c572a6546021e609b752e5644c166ad8a1" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View File

@ -158,8 +158,6 @@ export default class ChainBackend extends BaseBackend {
if (policyMap[key].versionId) { if (policyMap[key].versionId) {
policyRes.versionId = policyMap[key].versionId; policyRes.versionId = policyMap[key].versionId;
} }
policyRes.isImplicit = policyMap[key].isImplicit;
policyRes.action = policyMap[key].action;
return policyRes; return policyRes;
}); });
} }

View File

@ -82,7 +82,12 @@ const actionMapRQ = {
}; };
// action map used for bucket policies // action map used for bucket policies
const actionMapBP = actionMapRQ; const actionMapBP = {
bucketDeleteCors : 's3:PutBucketCORS',
bucketDeleteLifecycle : 's3:PutLifecycleConfiguration',
bucketDeleteReplication : 's3:PutReplicationConfiguration',
...sharedActionMap
};
// action map for all relevant s3 actions // action map for all relevant s3 actions
const actionMapS3 = { const actionMapS3 = {