Merge branch 'main' of github.com:AmruthPillai/Reactive-Resume

This commit is contained in:
Amruth Pillai
2025-01-12 16:23:48 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ To run the development environment of the application locally on your computer,
#### Requirements
- Docker (with Docker Compose)
- Node.js 18 or higher (with pnpm)
- Node.js 20 or higher (with pnpm)
### 1. Fork and Clone the Repository

View File

@ -29,6 +29,6 @@ export class StorageController {
);
}
return this.storageService.uploadObject(userId, "pictures", file.buffer, userId);
return this.storageService.uploadObject(userId, "pictures", file.buffer, file.filename);
}
}