Add Md5UserSaltCredManager.

This commit is contained in:
Gucheng Wang
2021-11-04 21:31:12 +08:00
parent 7792f4589d
commit 7520b71198
3 changed files with 47 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class OrganizationEditPage extends React.Component {
<Col span={22} >
<Select virtual={false} style={{width: '100%'}} value={this.state.organization.passwordType} onChange={(value => {this.updateOrganizationField('passwordType', value);})}>
{
['plain', 'salt']
['plain', 'salt', 'md5-salt']
.map((item, index) => <Option key={index} value={item}>{item}</Option>)
}
</Select>