|
|
@@ -98,6 +98,7 @@ public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
|
|
|
go(ScreenID.MY_MAIN);
|
|
|
break;
|
|
|
case Event.FAQ:
|
|
|
+ finish();
|
|
|
go(ScreenID.FAQ);
|
|
|
break;
|
|
|
case Event.GUIDE:
|
|
|
@@ -129,9 +130,14 @@ public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
|
|
|
|
|
|
@Override
|
|
|
public void onNavigationClickNotification(NavigationBar navigationBar) {
|
|
|
-// go(ScreenID.NOTIFICATION);
|
|
|
- // TODO: 2차 오픈: 준비중, 얼랏 처리
|
|
|
- showErrorDialog(R.string.ready_comment);
|
|
|
+ if (AppUtil.isDebug()) {
|
|
|
+ finish();
|
|
|
+ go(ScreenID.NOTIFICATION);
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ // TODO: 2차 오픈: 준비중, 얼랏 처리
|
|
|
+ showErrorDialog(R.string.ready_comment);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@@ -146,6 +152,7 @@ public class AllMenuPresenter extends Presenter<AllMenuModel, IView> {
|
|
|
|
|
|
@Override
|
|
|
public void onNavigationClickTextButton(NavigationBar navigationBar) {
|
|
|
+ finish();
|
|
|
go(ScreenID.SIGN_UP_START);
|
|
|
}
|
|
|
|