-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
컨트롤러 추가 #17
컨트롤러 추가 #17
Conversation
src/main/java/com/msg/gauth/domain/auth/presentation/AuthController.java
Outdated
Show resolved
Hide resolved
src/main/java/com/msg/gauth/domain/email/presentation/EmailAuthController.java
Outdated
Show resolved
Hide resolved
src/main/java/com/msg/gauth/domain/email/presentation/EmailAuthController.java
Outdated
Show resolved
Hide resolved
src/main/java/com/msg/gauth/domain/email/presentation/EmailAuthController.java
Outdated
Show resolved
Hide resolved
src/main/java/com/msg/gauth/domain/email/presentation/EmailAuthController.java
Outdated
Show resolved
Hide resolved
src/main/java/com/msg/gauth/domain/user/presentation/UserController.java
Outdated
Show resolved
Hide resolved
머지? |
@DeleteMapping | ||
public ResponseEntity<Void> logout(){ | ||
logoutService.execute(); | ||
return ResponseEntity.ok().build(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://www.notion.so/HTTP-Status-Code-8b7a1011358b4cbaae39954dc25e3a5e
에다가 Response Status Code 정리해본거 있는데 반영해보싈?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
반영완료
@PostMapping("/signup") | ||
public ResponseEntity<Void> signUpMember(@RequestBody @Valid SignUpDto signUpDto){ | ||
signUpService.execute(signUpDto); | ||
return ResponseEntity.noContent().build(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 친구 created 어떰
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿
한일