Skip to content

Commit

Permalink
feat: 스웨거 설명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JONG-KYEONG committed Aug 13, 2024
1 parent 79193bc commit edb16e8
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 1 deletion.
Binary file modified server/.gradle/8.8/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified server/.gradle/8.8/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified server/.gradle/8.8/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified server/.gradle/8.8/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified server/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
3 changes: 3 additions & 0 deletions server/build/resources/main/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@
#
#tmdb.api.key=${TMDB_API_KEY}

spring.servlet.multipart.max-file-size=50MB
spring.servlet.multipart.max-request-size=50MB

spring.security.oauth2.client.registration.google.client-id=240772131497-d17ho20q4gb42n5s42ncohdh5k9379rc.apps.googleusercontent.com
spring.security.oauth2.client.registration.google.client-secret=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
spring.security.oauth2.client.registration.google.redirect-uri=http://glogglogglog-env.eba-fuksumx7.ap-northeast-2.elasticbeanstalk.com/oauth2/callback/google
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class ContentDetailController {
private final ContentService contentService;
@GetMapping("/content")
@Operation(summary = "내가 관심 있어 하는 장르의 작품 리스트 + 간편 주소를 가져옵니다. " ,description = "userId와 가져올 컨텐츠 갯수를 파라미터로 넣어주세요")
@Operation(summary = "상세 페이지에서의 정보를 가져옵니다" ,description = "userId와 contentId를 파라미터로 넣어주세요")
public ResponseEntity<ContentDetailResponse> getInterestContentResponse(@RequestParam Long userId, @RequestParam Long contentId) {
ContentDetailResponse contentDetailResponse = contentService.getContentDetailResponse(userId, contentId);
return new ResponseEntity<>(contentDetailResponse, HttpStatus.OK);
Expand Down

0 comments on commit edb16e8

Please sign in to comment.