diff --git a/src/main/java/company/specialsource/controller/AuthController.java b/src/main/java/company/specialsource/controller/AuthController.java index 0eef7d3..0179006 100644 --- a/src/main/java/company/specialsource/controller/AuthController.java +++ b/src/main/java/company/specialsource/controller/AuthController.java @@ -18,7 +18,7 @@ public class AuthController { boolean isSuccess = userService.login(loginRequest.getUsername(), loginRequest.getPassword()); if (isSuccess) { - return ResponseEntity.ok("로그인 성공!"); + return ResponseEntity.ok("로그인 성공!!!"); } else { return ResponseEntity.status(401).body("아이디 또는 비밀번호가 틀렸습니다."); }