File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
DatabaseAccountPasswordPolicy Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ export default {
16
16
globalConfiguration : '全局配置' ,
17
17
license : '许可证' ,
18
18
personalize : '个性化设置' ,
19
- gitSSH : 'Git SSH配置'
19
+ gitSSH : 'Git SSH配置' ,
20
+ databaseAccountPasswordPolicy : '数据库账号密码策略'
20
21
} ,
21
22
22
23
gitSSH : {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Do not modify this file in the dms-ui repository
3
+ */
4
+ const DatabaseAccountPasswordPolicyForm = ( ) => null ;
5
+
6
+ export default DatabaseAccountPasswordPolicyForm ;
Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ export enum SystemSegmentedKeyEnum {
5
5
GlobalConfiguration = 'global_configuration' ,
6
6
License = 'license' ,
7
7
PersonalizeSetting = 'personalize' ,
8
- GitSSHConfig = 'git_ssh_config'
8
+ GitSSHConfig = 'git_ssh_config' ,
9
+ DatabaseAccountPasswordPolicy = 'database_account_password_policy'
9
10
}
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import LoginConnection from './LoginConnection/index';
14
14
import License from './License' ;
15
15
import PersonalizeSetting from './PersonalizeSetting' ;
16
16
import GitSSHConfig from './GitSSHConfig' ;
17
+ import DatabaseAccountPasswordPolicyForm from './DatabaseAccountPasswordPolicy' ;
17
18
import { ROUTE_PATHS } from '@actiontech/shared/lib/data/routePaths' ;
18
19
19
20
const System = ( ) => {
@@ -67,7 +68,14 @@ const System = () => {
67
68
label : t ( 'dmsSystem.tabPaneTitle.gitSSH' ) ,
68
69
value : SystemSegmentedKeyEnum . GitSSHConfig ,
69
70
components : < GitSSHConfig />
71
+ } ,
72
+ // #if [provision]
73
+ {
74
+ label : t ( 'dmsSystem.tabPaneTitle.databaseAccountPasswordPolicy' ) ,
75
+ value : SystemSegmentedKeyEnum . DatabaseAccountPasswordPolicy ,
76
+ components : < DatabaseAccountPasswordPolicyForm />
70
77
}
78
+ // #endif
71
79
] ,
72
80
[ t ]
73
81
) ;
You can’t perform that action at this time.
0 commit comments