Skip to content

Commit

Permalink
chore : 불필요한 테스트 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
5tarry committed Dec 7, 2023
1 parent 5dbc076 commit 1a4c4d4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
5 changes: 0 additions & 5 deletions server/src/presigned-url/presigned-url.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,4 @@ export class PresignedUrlController {
) {
return this.presignedUrlService.getImagePresignedUrl(id, query);
}

@Get('test/issue/:id')
getVideoPresignedUrl(@Param('id') id: string) {
return this.presignedUrlService.getVideoPresignedUrl(id);
}
}
9 changes: 0 additions & 9 deletions server/src/presigned-url/presigned-url.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,4 @@ export class PresignedUrlService {
);
return { presignedUrl };
}

async getVideoPresignedUrl(id: string) {
const presignedUrl = await createPresignedUrl(
'test3-bucket',
id,
'GET',
);
return { presignedUrl };
}
}

0 comments on commit 1a4c4d4

Please sign in to comment.