|
|
@@ -382,7 +382,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
GagaMap result = niceCertify.certifyCellPhone();
|
|
|
|
|
|
- if (TscConstants.FrontGb.MOB.value().equals(TsfSession.getFrontGb())) {
|
|
|
+ if (TscConstants.FrontGb.MOBIEL.value().equals(TsfSession.getFrontGb())) {
|
|
|
mav.addObject("redirectUrl", redirectUrl); // 모바일만 사용
|
|
|
}
|
|
|
|
|
|
@@ -645,7 +645,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
/**
|
|
|
* 가입완료 페이지
|
|
|
*
|
|
|
- * @return GagaMap - 결과정보
|
|
|
+ * @return ModelAndView - 가입완료 화면
|
|
|
* @author jsshin
|
|
|
* @since 2021. 02. 18
|
|
|
*/
|
|
|
@@ -662,5 +662,21 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
return mav;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 휴면해제 인증화면
|
|
|
+ *
|
|
|
+ * @return ModelAndView - 가입완료 화면
|
|
|
+ * @author jsshin
|
|
|
+ * @since 2021. 03. 08
|
|
|
+ */
|
|
|
+ @GetMapping("/dormant/certify/form")
|
|
|
+ public ModelAndView getDormantCeirtyForm() {
|
|
|
+ ModelAndView mav = new ModelAndView();
|
|
|
+
|
|
|
+ mav.setViewName(super.getDeviceViewName("customer/DormantCertifyForm"));
|
|
|
+
|
|
|
+ return mav;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|