From 01cc5d76070544de88f4264281967a480f5346dd Mon Sep 17 00:00:00 2001 From: Shane Mc Cormack Date: Mon, 3 Aug 2020 02:16:32 +0100 Subject: [PATCH] Add RRCLONE pseudo record type. (Issue mydnshost/mydnshost-api#50) --- templates/default/assets/records.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/default/assets/records.js b/templates/default/assets/records.js index 3a5e7d1..0e2fbd0 100644 --- a/templates/default/assets/records.js +++ b/templates/default/assets/records.js @@ -1,3 +1,4 @@ +// TODO: This should be grabbed from the api. var recordtypes = { "A": "A Record", "AAAA": "AAAA Record", @@ -10,7 +11,8 @@ var recordtypes = { "CAA": "Certification Authority Authorization (CAA)", "DS": "Delegation Signer (DS)", "SSHFP": "SSH Fingerprint (SSHFP)", - "TLSA": "TLSA Record" + "TLSA": "TLSA Record", + "RRCLONE": "RR Clone" }; var newRecordCount = 0;