biz9-logic 4.8.204 → 4.8.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +10 -10
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -8,17 +8,16 @@ const moment = require('moment'); const { get_new_item_main,get_data_config_main
|
|
|
8
8
|
const { Log,Str,DateTime,Num,Obj } = require('/home/think2/www/doqbox/biz9-framework/biz9-utility/code');
|
|
9
9
|
class Message {
|
|
10
10
|
static SUCCESS="Success";
|
|
11
|
-
static LOGIN_GOOD="Login Success";
|
|
12
|
-
static LOGIN_BAD="Login Incorrect";
|
|
13
11
|
|
|
14
|
-
static
|
|
15
|
-
static
|
|
16
|
-
|
|
17
|
-
static
|
|
18
|
-
static
|
|
19
|
-
|
|
20
|
-
static
|
|
21
|
-
static
|
|
12
|
+
static USER_LOGIN_SUCCESS="Login Success";
|
|
13
|
+
static USER_LOGIN_BAD="Login Incorrect";
|
|
14
|
+
static USER_REGISTER_SUCCESS="Register Success";
|
|
15
|
+
static USER_REGISTER_BAD="Register Fail";
|
|
16
|
+
static USER_EMAIL_NOT_VALID="Please Enter A Valid Email.";
|
|
17
|
+
static USER_PASSWORD_NOT_VALID="Please Enter A Valid Password.";
|
|
18
|
+
static USER_EMAIL_NOT_UNIQUE="E-mail Not Availble. Please Choose Another.";
|
|
19
|
+
static USER_USERNAME_NOT_VALID="Please Enter A Valid Username.";
|
|
20
|
+
static USER_USERNAME_NOT_UNIQUE="Username Not Availble. Please Choose Another.";
|
|
22
21
|
|
|
23
22
|
static DATA_NOT_FOUND="Data Not Found.";
|
|
24
23
|
static SYSTEM_NOT_FOUND="System Not Found.";
|
|
@@ -29,6 +28,7 @@ class Message {
|
|
|
29
28
|
|
|
30
29
|
static REVIEW_ADD_SUCCESS="Review Add Success.";
|
|
31
30
|
static REVIEW_REMOVE_SUCCESS="Review Remove Success.";
|
|
31
|
+
static REVIEW_USER_LOGIN="Please Login To Add Review.";
|
|
32
32
|
}
|
|
33
33
|
class TemplateType {
|
|
34
34
|
static PRIMARY='primary';
|