Skip to content

Commit 93ec538

Browse files
committed
fix: sign 엔드 포인트 수정
- 필터에만 적용시키고 스웨거 api에는 올바르게 적용하지 않았기에 수정.
1 parent 267bd57 commit 93ec538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/somemore/global/auth/controller/SignController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@RestController
1616
@RequiredArgsConstructor
17-
@RequestMapping("/api/center")
17+
@RequestMapping("/api")
1818
@Tag(name = "Sign API", description = "ID,PW 로그인, 로그아웃")
1919
public class SignController {
2020

@@ -30,7 +30,7 @@ public class SignController {
3030
*
3131
* 실제 로그인 절차는 필터에서 처리됩니다.
3232
*/
33-
@PostMapping("/sign-in")
33+
@PostMapping("/sign-in/id-pw")
3434
public ApiResponse<String> signIn(
3535
@RequestParam SignRequestDto signRequestDto
3636
) {

0 commit comments

Comments
 (0)