Improve readability
This commit is contained in:
parent
0b747b901c
commit
7e8c5c0c3c
|
@ -25,9 +25,14 @@ async function save(readable: stream.Readable, name: string, type: string, hash:
|
|||
const minio = new Minio.Client(config.drive.config);
|
||||
const id = uuid.v4();
|
||||
const obj = `${config.drive.prefix}/${id}`;
|
||||
|
||||
const baseUrl = config.drive.baseUrl
|
||||
|| `${ config.drive.config.secure ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? ':' + config.drive.config.port : '' }/${ config.drive.bucket }`;
|
||||
await minio.putObject(config.drive.bucket, obj, readable, size, { 'Content-Type': type, 'Cache-Control': 'max-age=31536000, immutable' });
|
||||
|
||||
await minio.putObject(config.drive.bucket, obj, readable, size, {
|
||||
'Content-Type': type,
|
||||
'Cache-Control': 'max-age=31536000, immutable'
|
||||
});
|
||||
|
||||
Object.assign(metadata, {
|
||||
withoutChunks: true,
|
||||
|
|
Loading…
Reference in New Issue