DNSSEC: WebUI add DLV record type

Ticket: https://fedorahosted.org/freeipa/ticket/4328
Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
This commit is contained in:
Martin Basti 2014-06-20 14:54:04 +02:00 committed by Petr Vobornik
parent 2229e89bbb
commit 0eef37908c

View File

@ -861,6 +861,20 @@ IPA.dns.get_record_metadata = function() {
columns: ['ds_part_key_tag', 'ds_part_algorithm',
'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: [
@ -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++) {