Merge "Allow creation of NS records in zones"

This commit is contained in:
Zuul 2018-10-18 21:36:31 +00:00 committed by Gerrit Code Review
commit 1b9b96fcb4
3 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,7 @@
function editableRecordType(recordset) {
return $qExtensions.booleanAsPromise(
!(recordset.type == 'NS' && recordset.name == recordset.zone_name) && // not apex NS
editableTypes.indexOf(recordset.type) > -1
);
}

View File

@ -93,6 +93,7 @@
function editableRecordType(recordset) {
return $qExtensions.booleanAsPromise(
!(recordset.type == 'NS' && recordset.name == recordset.zone_name) && // not apex NS
editableTypes.indexOf(recordset.type) > -1
);
}

View File

@ -56,6 +56,7 @@
"AAAA",
"CNAME",
"MX",
"NS",
"PTR",
"SPF",
"SRV",