Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
refactor AuthController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Apr 2, 2024
1 parent f437128 commit f32f900
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Mono<TokenResponse> login(@Valid @RequestBody LoginRequest request) {
return signinUsecase.signin(request);
}

@PostMapping("/signup")
@PostMapping("/register")
@ResponseStatus(HttpStatus.CREATED)
public Mono<Void> signup(@Valid @RequestBody SignupRequest request) {
return signupUsecase.signup(request);
Expand Down

0 comments on commit f32f900

Please sign in to comment.