@@ -161,4 +161,19 @@ public class SignUpModel extends Model {
}
+ /**
+ * 모바일 인증 했음을 표시;
+ */
+ public void checkMobileAuthorized() {
+ signUpBean.setAuthorized(true);
+ }
+
+ * 모바일 인증 했음 확인
+ *
+ * @return
+ public boolean isMobileAuthorized() {
+ return signUpBean.isAuthorized();
@@ -115,6 +115,8 @@ public class SignUpMobileAuthorizationPresenter extends SignUpFragmentPresenter
else {
// 신규 가입
+ model.checkMobileAuthorized();
onEvent(new Event.Builder(Event.CONFIRM).build());