Skip to content

Commit

Permalink
[HOTFIX] HttpStatus (ok -> noContent)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinjoo-lab committed Sep 26, 2023
1 parent 2e16a43 commit 25d1607
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public ResponseEntity<AfterLoginDto> saveMember(

@GetMapping("/validate")
public ResponseEntity<Void> validate(){
return ResponseEntity.ok().build();
return ResponseEntity.noContent().build();
}

@PostMapping("/login")
Expand Down

0 comments on commit 25d1607

Please sign in to comment.