Skip to content
Snippets Groups Projects
Commit 8eca37ff authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed remote functions naming (CAA/CNAME)

parent 0bb5a18c
No related branches found
No related tags found
No related merge requests found
......@@ -429,22 +429,22 @@ class remoting_dns extends remoting {
// ----------------------------------------------------------------------------------------------------------------
//* Get record details
public function dns_cname_get($session_id, $primary_id) {
public function dns_caa_get($session_id, $primary_id) {
return $this->dns_rr_get($session_id, $primary_id, 'CAA');
}
//* Add a record
public function dns_cname_add($session_id, $client_id, $params, $update_serial=false) {
public function dns_caa_add($session_id, $client_id, $params, $update_serial=false) {
return $this->dns_rr_add($session_id, $client_id, $params, $update_serial, 'CAA');
}
//* Update a record
public function dns_cname_update($session_id, $client_id, $primary_id, $params, $update_serial=false) {
public function dns_caa_update($session_id, $client_id, $primary_id, $params, $update_serial=false) {
return $this->dns_rr_update($session_id, $client_id, $primary_id, $params, $update_serial, 'CAA');
}
//* Delete a record
public function dns_cname_delete($session_id, $primary_id, $update_serial=false) {
public function dns_caa_delete($session_id, $primary_id, $update_serial=false) {
return $this->dns_rr_delete($session_id, $primary_id, $update_serial, 'CAA');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment