mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Add support of new options in dnsconfig
dnsconfig was extended of new attributes, so reflecting it in UI. New attributes: * idnsForwardPolicy * idnsAllowSyncPTR * idnsZoneRefresh https://fedorahosted.org/freeipa/ticket/2489
This commit is contained in:
parent
9b562f7377
commit
1b0ede0776
@ -42,11 +42,22 @@ IPA.dns.config_entity = function(spec) {
|
||||
name: 'options',
|
||||
label: IPA.messages.objects.dnsconfig.options,
|
||||
fields: [
|
||||
{
|
||||
type: 'checkbox',
|
||||
name: 'idnsallowsyncptr'
|
||||
},
|
||||
{
|
||||
type: 'multivalued',
|
||||
name: 'idnsforwarders',
|
||||
validators: [IPA.ip_address_validator()]
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'checkboxes',
|
||||
name: 'idnsforwardpolicy',
|
||||
mutex: true,
|
||||
options: IPA.create_options(['only', 'first'])
|
||||
},
|
||||
'idnszonerefresh'
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -17,9 +17,18 @@
|
||||
"cn": [
|
||||
"dns"
|
||||
],
|
||||
"idnsallowsyncptr": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsforwarders": [
|
||||
"2001:beef::1"
|
||||
],
|
||||
"idnsforwardpolicy": [
|
||||
"first"
|
||||
],
|
||||
"idnszonerefresh": [
|
||||
"20"
|
||||
],
|
||||
"objectclass": [
|
||||
"idnsConfigObject",
|
||||
"nsContainer",
|
||||
|
@ -18,9 +18,18 @@
|
||||
"dns"
|
||||
],
|
||||
"dn": "cn=dns,dc=dev,dc=example,dc=com",
|
||||
"idnsallowsyncptr": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsforwarders": [
|
||||
"2001:beef::1"
|
||||
],
|
||||
"idnsforwardpolicy": [
|
||||
"first"
|
||||
],
|
||||
"idnszonerefresh": [
|
||||
"20"
|
||||
],
|
||||
"objectclass": [
|
||||
"idnsConfigObject",
|
||||
"nsContainer",
|
||||
|
Loading…
Reference in New Issue
Block a user