@steedos/service-core-objects 3.0.13-beta.21 → 3.0.13-beta.22
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/main/default/objectTranslations/spaces.en/spaces.en.objectTranslation.yml +5 -0
- package/main/default/objectTranslations/spaces.zh-CN/spaces.zh-CN.objectTranslation.yml +5 -0
- package/main/default/objectTranslations/users.en/users.en.objectTranslation.yml +4 -0
- package/main/default/objectTranslations/users.zh-CN/users.zh-CN.objectTranslation.yml +5 -1
- package/main/default/objects/spaces/spaces.object.yml +7 -0
- package/main/default/objects/users/users.object.yml +7 -0
- package/main/default/util/password.js +1 -0
- package/package.json +3 -3
|
@@ -10,6 +10,10 @@ fields:
|
|
|
10
10
|
label: Space Owner
|
|
11
11
|
help:
|
|
12
12
|
description:
|
|
13
|
+
password_expiry_days:
|
|
14
|
+
label: Password Expiry Days
|
|
15
|
+
help: Number of days after which users must change their password. Leave empty to disable password expiry.
|
|
16
|
+
description:
|
|
13
17
|
admins:
|
|
14
18
|
label: Admins
|
|
15
19
|
help:
|
|
@@ -52,6 +56,7 @@ fields:
|
|
|
52
56
|
description:
|
|
53
57
|
groups:
|
|
54
58
|
register_account: Register account
|
|
59
|
+
Security: Security
|
|
55
60
|
developer: Developer
|
|
56
61
|
listviews:
|
|
57
62
|
all:
|
|
@@ -10,6 +10,10 @@ fields:
|
|
|
10
10
|
label: 所有者
|
|
11
11
|
help:
|
|
12
12
|
description:
|
|
13
|
+
password_expiry_days:
|
|
14
|
+
label: 密码过期天数
|
|
15
|
+
help: 用户必须修改密码的天数。留空表示禁用密码过期。
|
|
16
|
+
description:
|
|
13
17
|
admins:
|
|
14
18
|
label: 管理员
|
|
15
19
|
help:
|
|
@@ -52,6 +56,7 @@ fields:
|
|
|
52
56
|
description:
|
|
53
57
|
groups:
|
|
54
58
|
register_account: 用户自助注册
|
|
59
|
+
Security: 安全
|
|
55
60
|
developer: 华炎云
|
|
56
61
|
listviews:
|
|
57
62
|
all:
|
|
@@ -112,6 +112,13 @@ fields:
|
|
|
112
112
|
omit: false
|
|
113
113
|
hidden: false
|
|
114
114
|
sort_no: 110
|
|
115
|
+
password_expiry_days:
|
|
116
|
+
name: password_expiry_days
|
|
117
|
+
label: Password Expiry Days
|
|
118
|
+
type: number
|
|
119
|
+
inlineHelpText: Number of days after which users must change their password. Leave empty to disable password expiry.
|
|
120
|
+
sort_no: 120
|
|
121
|
+
min: 0
|
|
115
122
|
services:
|
|
116
123
|
name: services
|
|
117
124
|
type: object
|
|
@@ -126,6 +126,13 @@ fields:
|
|
|
126
126
|
omit: true
|
|
127
127
|
hidden: true
|
|
128
128
|
sort_no: 230
|
|
129
|
+
password_modified_at:
|
|
130
|
+
name: password_modified_at
|
|
131
|
+
label: Password Modified At
|
|
132
|
+
type: datetime
|
|
133
|
+
omit: true
|
|
134
|
+
hidden: true
|
|
135
|
+
sort_no: 235
|
|
129
136
|
primary_email_verified:
|
|
130
137
|
name: primary_email_verified
|
|
131
138
|
type: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-core-objects",
|
|
3
|
-
"version": "3.0.13-beta.
|
|
3
|
+
"version": "3.0.13-beta.22",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"steedos"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@steedos/service-package-loader": "3.0.13-beta.
|
|
12
|
+
"@steedos/service-package-loader": "3.0.13-beta.22",
|
|
13
13
|
"bcryptjs": "^3.0.3",
|
|
14
14
|
"json2xls": "^0.1.2",
|
|
15
15
|
"lodash": "^4.17.21"
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"description": "steedos package",
|
|
18
18
|
"repository": {},
|
|
19
19
|
"license": "MIT",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "d5313f898793706d7abc6481c62e0cfa9fbe25cc"
|
|
21
21
|
}
|