biz9-logic 4.8.347 → 4.8.348
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
|
@@ -174,11 +174,11 @@ class Title {
|
|
|
174
174
|
static DATA_TYPE_CONTENT="Content";
|
|
175
175
|
|
|
176
176
|
//role
|
|
177
|
-
static
|
|
178
|
-
static
|
|
179
|
-
static
|
|
180
|
-
static
|
|
181
|
-
static
|
|
177
|
+
static USER_ROLE_SUPER_ADMIN='Super Admin';
|
|
178
|
+
static USER_ROLE_ADMIN='Admin';
|
|
179
|
+
static USER_ROLE_MANAGER='Manager';
|
|
180
|
+
static USER_ROLE_USER='User';
|
|
181
|
+
static USER_ROLE_GUEST='Guest';
|
|
182
182
|
|
|
183
183
|
//app
|
|
184
184
|
static APP_MOBILE="Mobile";
|
|
@@ -234,11 +234,11 @@ class Type {
|
|
|
234
234
|
static FIELD_VALUE_LIST="list";
|
|
235
235
|
|
|
236
236
|
//role
|
|
237
|
-
static
|
|
238
|
-
static
|
|
239
|
-
static
|
|
240
|
-
static
|
|
241
|
-
static
|
|
237
|
+
static USER_ROLE_SUPER_ADMIN='super_admin';
|
|
238
|
+
static USER_ROLE_ADMIN='admin';
|
|
239
|
+
static USER_ROLE_MANAGER='manager';
|
|
240
|
+
static USER_ROLE_USER='user';
|
|
241
|
+
static USER_ROLE_GUEST='guest';
|
|
242
242
|
|
|
243
243
|
//data_source
|
|
244
244
|
static DATA_SOURCE_CACHE="cache";
|