merged private server and console to private-cloud

This commit is contained in:
strawmanbobi
2020-01-12 19:15:08 +08:00
parent 15d977ccd6
commit 90f2d17331
176 changed files with 220265 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/*
* Created by Strawmanbobi
* 2014-08-30
*/
function Enums() {
this.APP_PRODUCTION_MODE = "production";
this.APP_DEVELOPMENT_MODE = "development";
this.APP_USERDEBUG_MODE = "userdebug";
this.SERVER_MAIN = 0;
this.SCHEDULER_PERIODICAL = 0;
this.SCHEDULER_ONCE = 1;
this.JPUSH_DEVICE_TYPE_IOS = 0;
this.JPUSH_DEVICE_TYPE_ANDROID = 1;
this.JPUSH_DEVICE_TYPE_BOTH = 2;
this.JPUSH_DEST_TYPE_BROADCAST = 0;
this.JPUSH_DEST_TYPE_PEER = 1;
this.JPUSH_DEST_TYPE_GROUP = 2;
this.JPUSH_PUSH_TYPE_MESSAGE = 0;
this.JPUSH_PUSH_TYPE_NOTIFICATION = 1;
this.BC_API_MESSAGE_TYPE_MESSAGE = 0;
this.BC_API_MESSAGE_TYPE_NOTIFICATION = 1;
this.BC_API_PUSH_TYPE_PEER = 0;
this.BC_API_PUSH_TYPE_BROADCAST = 1;
this.ANDROID_STYPE_0 = 1;
}
module.exports = Enums;