|
|
@@ -382,7 +382,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
GagaMap result = niceCertify.certifyCellPhone();
|
|
|
|
|
|
- if (TscConstants.FrontGb.MOBIEL.value().equals(TsfSession.getFrontGb())) {
|
|
|
+ if (TscConstants.FrontGb.MOB.value().equals(TsfSession.getFrontGb())) {
|
|
|
mav.addObject("redirectUrl", redirectUrl); // 모바일만 사용
|
|
|
}
|
|
|
|
|
|
@@ -404,7 +404,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
GagaMap result = niceCertify.certifyIpin();
|
|
|
|
|
|
- if (TscConstants.FrontGb.MOBIEL.value().equals(TsfSession.getFrontGb())) {
|
|
|
+ if (TscConstants.FrontGb.MOB.value().equals(TsfSession.getFrontGb())) {
|
|
|
mav.addObject("redirectUrl", redirectUrl); // 모바일만 사용
|
|
|
}
|
|
|
|
|
|
@@ -439,7 +439,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
authMethod = TscConstants.AuthMethod.IPIN.value();
|
|
|
}
|
|
|
|
|
|
- if (TscConstants.FrontGb.MOBIEL.value().equals(TsfSession.getFrontGb())) {
|
|
|
+ if (TscConstants.FrontGb.MOB.value().equals(TsfSession.getFrontGb())) {
|
|
|
mav.addObject("redirectUrl", redirectUrl);
|
|
|
}
|
|
|
|
|
|
@@ -678,5 +678,20 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
return mav;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 휴면해제
|
|
|
+ *
|
|
|
+ * @return GagaMap - 결과
|
|
|
+ * @author jsshin
|
|
|
+ * @since 2021. 03. 08
|
|
|
+ */
|
|
|
+ @PostMapping("/dormant/release")
|
|
|
+ public GagaMap releaseDormantCustomer(@RequestBody Customer customer) {
|
|
|
+
|
|
|
+ return customerService.releaseDormantCustomer(customer);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
}
|