Skip to content

Commit

Permalink
merge #303: iOS 요청사항 해결 - 사진 파일 용량 10MB로 조정
Browse files Browse the repository at this point in the history
[fix] iOS 요청사항 해결 - 사진 파일 용량 10MB로 조정
  • Loading branch information
yaongmeow authored Dec 7, 2023
2 parents b46bc8c + 7706dbd commit 112e3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BE/src/timelines/timelines.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class TimelinesController {

@Put(':id')
@UseInterceptors(
FileInterceptor('image', { limits: { fileSize: 1024 * 1024 * 2 } })
FileInterceptor('image', { limits: { fileSize: 1024 * 1024 * 10 } })
)
@ApiOperation({
summary: 'id에 해당하는 타임라인 수정',
Expand Down

0 comments on commit 112e3b2

Please sign in to comment.