Skip to content

Commit

Permalink
Merge pull request #267 from CaZaIt/refactor/noauth_menu
Browse files Browse the repository at this point in the history
NoAuth 추가
  • Loading branch information
parkrootseok authored May 8, 2023
2 parents 87c08b1 + 04a29be commit add7b51
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import shop.cazait.domain.cafemenu.dto.PostCafeMenuRes;
import shop.cazait.domain.cafemenu.service.CafeMenuService;
import shop.cazait.global.common.dto.response.SuccessResponse;
import shop.cazait.global.config.encrypt.NoAuth;
import shop.cazait.global.error.status.SuccessStatus;

@Tag(name = "카페 메뉴 API")
Expand Down Expand Up @@ -72,6 +73,7 @@ public SuccessResponse<PostCafeMenuRes> registerMenu(@PathVariable Long cafeId,
return new SuccessResponse<>(CREATE_MENU, cafeMenuService.registerMenu(cafeId, postCafeMenuReq, image));
}

@NoAuth
@Operation(summary = "카페 메뉴 조회", description = "카페 ID를 받아 해당 카페에 대한 모든 메뉴를 조회한다.")
@Parameter(name = "cafeId", description = "카페 ID")
@ApiResponses({
Expand Down

0 comments on commit add7b51

Please sign in to comment.