summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/dns.js
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2014-06-20 14:54:04 +0200
committerPetr Vobornik <pvoborni@redhat.com>2014-06-20 16:46:03 +0200
commit0eef37908c580f4550618244e661594138f7b382 (patch)
treec40cb4985e63d72bc56c19374ac8fc664f64ba37 /install/ui/src/freeipa/dns.js
parent2229e89bbb2b89ad72e467de83f735b308a7bca1 (diff)
downloadfreeipa-0eef37908c580f4550618244e661594138f7b382.tar.gz
freeipa-0eef37908c580f4550618244e661594138f7b382.tar.xz
freeipa-0eef37908c580f4550618244e661594138f7b382.zip
DNSSEC: WebUI add DLV record type
Ticket: https://fedorahosted.org/freeipa/ticket/4328 Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
Diffstat (limited to 'install/ui/src/freeipa/dns.js')
-rw-r--r--install/ui/src/freeipa/dns.js16
1 files changed, 15 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/dns.js b/install/ui/src/freeipa/dns.js
index cad306ed8..a54985d52 100644
--- a/install/ui/src/freeipa/dns.js
+++ b/install/ui/src/freeipa/dns.js
@@ -862,6 +862,20 @@ IPA.dns.get_record_metadata = function() {
'ds_part_digest_type']
},
{
+ name: 'dlvrecord',
+ attributes: [
+ 'dlv_part_key_tag',
+ 'dlv_part_algorithm',
+ 'dlv_part_digest_type',
+ {
+ name: 'dlv_part_digest',
+ $type: 'textarea'
+ }
+ ],
+ columns: ['dlv_part_key_tag', 'dlv_part_algorithm',
+ 'dlv_part_digest_type']
+ },
+ {
name: 'kxrecord',
attributes: [
'kx_part_preference',
@@ -1365,7 +1379,7 @@ IPA.dns_record_types = function() {
//only supported
var attrs = ['A', 'AAAA', 'A6', 'AFSDB', 'CERT', 'CNAME', 'DNAME',
- 'DS', 'KX', 'LOC', 'MX', 'NAPTR', 'NS',
+ 'DS', 'DLV', 'KX', 'LOC', 'MX', 'NAPTR', 'NS',
'NSEC3PARAM', 'PTR', 'SRV', 'SSHFP', 'TXT'];
var record_types = [];
for (var i=0; i<attrs.length; i++) {