diff --git a/pom.xml b/pom.xml index 3db99dcf0..86c67c2c3 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ 4.0.0 manage - 1.2.60 + 1.2.61 UTF-8 diff --git a/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java b/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java index 444874b12..b6916a91b 100644 --- a/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java +++ b/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java @@ -727,7 +727,7 @@ public class RetailAppController { * @param phone contact_phone * @throws Exception */ - @PutMapping("/account/phone/bind") + @PutMapping("/account/phone_verify/bind") public JSONObject sendBindAccountPhone(@ModelAttribute(RETAIL_DEVICE) JSONObject device, @RequestBody JSONObject phone) throws Exception { retailAppService.sendBindAccountPhone(device, phone); return new JSONObject(); @@ -739,7 +739,7 @@ public class RetailAppController { * @param device * @throws Exception */ - @PutMapping("/account/phone/unbind") + @PutMapping("/account/phone_verify/unbind") public JSONObject unBindAccountPhone(@ModelAttribute(RETAIL_DEVICE) JSONObject device) throws Exception { retailAppService.sendUnbindAccountPhone(device); return new JSONObject();