mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-19 20:09:14 +03:00
Implement CAA-records. Please note that pdns requires quotes around the third field: https://github.com/PowerDNS/pdns/issues/4937. Closes #141
This commit is contained in:
parent
5787659b07
commit
0e63757d19
1 changed files with 3 additions and 0 deletions
|
@ -146,6 +146,7 @@ if ($blocklogin === TRUE) {
|
|||
<option value="SRV">SRV</option>
|
||||
<option value="SSHFP">SSHFP</option>
|
||||
<option value="TLSA">TLSA</option>
|
||||
<option value="CAA">CAA</option>
|
||||
<option value="TXT">TXT</option>
|
||||
</select><br></td></tr>
|
||||
<tr><td>Content:</td><td><input type="text" id ="searchzone-content"></td></tr>
|
||||
|
@ -616,6 +617,7 @@ $(document).ready(function () {
|
|||
'SRV': 'SRV',
|
||||
'SSHFP': 'SSHFP',
|
||||
'TLSA': 'TLSA',
|
||||
'CAA': 'CAA',
|
||||
'DNAME': 'DNAME',
|
||||
'DS': 'DS'
|
||||
};
|
||||
|
@ -637,6 +639,7 @@ $(document).ready(function () {
|
|||
'SRV': 'SRV',
|
||||
'SSHFP': 'SSHFP',
|
||||
'TLSA': 'TLSA',
|
||||
'CAA': 'CAA',
|
||||
'TXT': 'TXT',
|
||||
};
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue