Skip to content

Commit

Permalink
refactor : 관리자용 메소드의 memberId 파라미터 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
2iedo committed Nov 8, 2024
1 parent 3ea9b00 commit 849c308
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public ResponseEntity<String> deleteGuard(@RequestAttribute("memberId") Long mem

@Operation(summary = "모든 보호자 조회", description = "관리자용 API입니다.")
@GetMapping("/all")
public ResponseEntity<List<GuardResponse>> getAllGuards(@RequestAttribute("memberId") Long memberId) {
public ResponseEntity<List<GuardResponse>> getAllGuards() {
return ResponseEntity.ok(guardService.readAllGuards());
}

Expand Down

0 comments on commit 849c308

Please sign in to comment.