|
@@ -194,8 +194,9 @@ public class AuthController extends ControllerSupport {
|
|
|
|
|
|
@WithoutStackTrace(true)
|
|
|
@ApiOperation(value = "校验验证码", notes = "")
|
|
|
- @PostMapping("/checkSmsCode")
|
|
|
- public void checkSmsCode(@RequestParam String phone, @RequestParam String verificationCode) {
|
|
|
+ @PostMapping("/checkVerificationCode")
|
|
|
+ public void checkVerificationCode(@RequestParam String phone,
|
|
|
+ @RequestParam String verificationCode) {
|
|
|
smsCodeService.checkSmsCode(phone, verificationCode);
|
|
|
}
|
|
|
|