Skip to content

Commit

Permalink
refactor: 로그아웃 postmapping 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
happysoy committed Feb 21, 2024
1 parent 195a95f commit 0197ee9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public ResponseEntity<UserAndTokenResponse> singInUser(
return authService.signIn(request);
}

@PostMapping("signout")
@PostMapping("/signout")
public ResponseEntity<Boolean> signOutUser(HttpServletRequest request) {
return authService.signOut(request);
}
Expand Down

0 comments on commit 0197ee9

Please sign in to comment.