(bucketName, { post })
| 25 | } |
| 26 | |
| 27 | function templateRequest(bucketName, { post }) { |
| 28 | return { |
| 29 | bucketName, |
| 30 | headers: { host: `${bucketName}.s3.amazonaws.com` }, |
| 31 | post, |
| 32 | actionImplicitDenies: false, |
| 33 | }; |
| 34 | } |
| 35 | |
| 36 | function getSSEConfig(bucketName, log, cb) { |
| 37 | return metadata.getBucket(bucketName, log, (err, md) => { |
no outgoing calls
no test coverage detected