Akshar2325 commited on
Commit
01841a1
·
1 Parent(s): 036d801

style(idrive-e2-storage): format ApiOperation decorator for readability

Browse files

- Split ApiOperation decorator across multiple lines for improved code formatting
- Maintain consistent decorator styling with project conventions
- Improve code readability without changing functionality

src/shared/modules/upload/idrive-e2-storage/idrive-e2-storage.controller.ts CHANGED
@@ -34,7 +34,9 @@ export class IdriveE2StorageController {
34
  }
35
 
36
  @Get('presigned-url')
37
- @ApiOperation({ summary: 'Get presigned download URL (called by Cloudflare Worker)' })
 
 
38
  @ApiQuery({ name: 'filePath', required: true })
39
  async getPresignedUrl(@Query('filePath') filePath: string) {
40
  if (!filePath) {
 
34
  }
35
 
36
  @Get('presigned-url')
37
+ @ApiOperation({
38
+ summary: 'Get presigned download URL (called by Cloudflare Worker)',
39
+ })
40
  @ApiQuery({ name: 'filePath', required: true })
41
  async getPresignedUrl(@Query('filePath') filePath: string) {
42
  if (!filePath) {