Skip to content

Commit bd48c06

Browse files
committed
feat(SignOut): ApiResponse data 타입 명시
1 parent 93dce20 commit bd48c06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/somemore/center/controller/CenterSignController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class CenterSignController {
2121
private final SignOutUseCase signOutUseCase;
2222

2323
@PostMapping("/sign-out")
24-
public ApiResponse<?> signOut(
24+
public ApiResponse<String> signOut(
2525
HttpServletResponse response,
2626
@AuthenticationPrincipal String userId) {
2727

src/main/java/com/somemore/volunteer/controller/VolunteerSignController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public RedirectView signIn(
4242
}
4343

4444
@PostMapping("/sign-out")
45-
public ApiResponse<?> signOut(
45+
public ApiResponse<String> signOut(
4646
HttpServletResponse response,
4747
@AuthenticationPrincipal String userId) {
4848

0 commit comments

Comments
 (0)