Add CAA record type support

This commit adds the CAA record type in the list of editable record
types of the Designate Dashboard. This fixes existing CAA records being
shown without a record type, and allows users to create and update
CAA records.

Change-Id: I8287f3f8879592b385852c83007d4b46a61a55c7
Signed-off-by: Aggelos Kolaitis <akolaitis@admin.grnet.gr>
This commit is contained in:
Aggelos Kolaitis
2020-03-06 19:22:20 +02:00
parent 4609ad1b51
commit f4cf36e57f

View File

@@ -47,7 +47,8 @@
'SSHFP': gettext('SSHFP - SSH Public Key Fingerprint'),
'TXT': gettext('TXT - Text record'),
'SOA': gettext('SOA - Start of authority record'),
'NS': gettext('NS - Name server')
'NS': gettext('NS - Name server'),
'CAA': gettext('CAA - Certificate Authority Authorization record'),
})
.constant(
'designatedashboard.resources.os-designate-recordset.editableTypes',
@@ -61,7 +62,8 @@
"SPF",
"SRV",
"SSHFP",
"TXT"
"TXT",
"CAA",
])
.config(config)
.run(run);