We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1674b commit c641448Copy full SHA for c641448
1 file changed
src/main/java/com/waitit/capstone/domain/admin/controller/AdminStoreController.java
@@ -27,7 +27,7 @@ public ResponseEntity<Void> updateStoreSummary(@RequestBody UpdateStoreRequest r
27
}
28
29
@GetMapping("/{id}")
30
- @PreAuthorize("hasRole('ADMIN')")
+ @PreAuthorize("hasRole('ADMIN')")//
31
@Operation(summary = "매장 상세 조회 (관리자용)", description = "관리자가 특정 ID를 가진 매장의 상세 정보를 조회합니다.")
32
public ResponseEntity<StoreDetailResponse> getStoreDetails(@PathVariable Long id) {
33
StoreDetailResponse storeDetails = storeService.getStoreDetails(id);
0 commit comments