diff --git a/src/connections/connections.service.ts b/src/connections/connections.service.ts index ebafad0..6be7523 100644 --- a/src/connections/connections.service.ts +++ b/src/connections/connections.service.ts @@ -197,4 +197,5 @@ export class ConnectionsService { return connections.map((c) => this.convertConnectionToDto(c)); } + } diff --git a/src/user/controller/user.controller.ts b/src/user/controller/user.controller.ts index 95f5b2a..0481228 100644 --- a/src/user/controller/user.controller.ts +++ b/src/user/controller/user.controller.ts @@ -151,4 +151,5 @@ export class UserController { await this.userService.deleteUser(user.id); return { ok: true }; } + } diff --git a/src/user/service/user.service.ts b/src/user/service/user.service.ts index 8bf888c..33e18ab 100644 --- a/src/user/service/user.service.ts +++ b/src/user/service/user.service.ts @@ -56,6 +56,7 @@ export class UserService { const putObjectRequest = new PutObjectCommand({ Bucket: process.env.AWS_S3_BUCKET_NAME, Key: key, + Body: buf, ContentType: type, }); @@ -162,4 +163,5 @@ export class UserService { }, }); } + }