UI: Add missing allowed_user_ids to role form in PKI (#22191)

This commit is contained in:
Kianna
2023-08-08 09:58:57 -07:00
committed by GitHub
parent a1a5be97e2
commit bfef207711
3 changed files with 6 additions and 1 deletions

3
changelog/22191.txt Normal file
View File

@@ -0,0 +1,3 @@
```release-note:improvement
ui: adds allowed_user_ids field to create role form and user_ids to generate certificates form in pki
```

View File

@@ -9,7 +9,7 @@ import PkiCertificateBaseModel from './base';
const generateFromRole = [
{
default: ['commonName', 'customTtl', 'format', 'privateKeyFormat'],
default: ['commonName', 'userIds', 'customTtl', 'format', 'privateKeyFormat'],
},
{
'Subject Alternative Name (SAN) Options': [

View File

@@ -55,6 +55,7 @@ const fieldGroups = [
},
{
'Additional subject fields': [
'allowedUserIds',
'allowedSerialNumbers',
'requireCn',
'useCsrCommonName',
@@ -293,6 +294,7 @@ export default class PkiRoleModel extends Model {
})
extKeyUsageOids;
@attr({ editType: 'stringArray' }) allowedUserIds;
@attr({ editType: 'stringArray' }) organization;
@attr({ editType: 'stringArray' }) country;
@attr({ editType: 'stringArray' }) locality;