Backport of UI: Add missing allowed_user_ids to role form in PKI into release/1.14.x (#22242)
Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
This commit is contained in:
parent
15903e4b10
commit
1c89ff215b
|
@ -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
|
||||
```
|
|
@ -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': [
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue