Skip to content

Commit c641448

Browse files
committed
fix: 오류 수정
1 parent 6c1674b commit c641448

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/waitit/capstone/domain/admin/controller/AdminStoreController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public ResponseEntity<Void> updateStoreSummary(@RequestBody UpdateStoreRequest r
2727
}
2828

2929
@GetMapping("/{id}")
30-
@PreAuthorize("hasRole('ADMIN')")
30+
@PreAuthorize("hasRole('ADMIN')")//
3131
@Operation(summary = "매장 상세 조회 (관리자용)", description = "관리자가 특정 ID를 가진 매장의 상세 정보를 조회합니다.")
3232
public ResponseEntity<StoreDetailResponse> getStoreDetails(@PathVariable Long id) {
3333
StoreDetailResponse storeDetails = storeService.getStoreDetails(id);

0 commit comments

Comments
 (0)