Skip to content

Commit

Permalink
[Refactor] #266 - NoAuth 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
parkrootseok committed May 8, 2023
1 parent 87c08b1 commit 04a29be
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 04a29be

Please sign in to comment.