fix lng availability; add returncode for not-found messages

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2018-02-16 15:39:59 +01:00
parent 60defd3cdf
commit 7c96164770
5 changed files with 17 additions and 16 deletions

View File

@@ -50,7 +50,7 @@ class Customers extends ApiCommand
if ($result) {
return $this->response(200, "successfull", $result);
}
throw new Exception("Customer with id #" . $id . " could not be found");
throw new Exception("Customer with id #" . $id . " could not be found", 404);
}
throw new Exception("Not allowed to execute given command.", 403);
}

View File

@@ -54,7 +54,7 @@ class Domains extends ApiCommand
if ($result) {
return $this->response(200, "successfull", $result);
}
throw new Exception("Domain with id #" . $id . " could not be found");
throw new Exception("Domain with id #" . $id . " could not be found", 404);
}
throw new Exception("Not allowed to execute given command.", 403);
}

View File

@@ -37,7 +37,7 @@ class IpsAndPorts extends ApiCommand
if ($result) {
return $this->response(200, "successfull", $result);
}
throw new Exception("IP/port with id #" . $id . " could not be found");
throw new Exception("IP/port with id #" . $id . " could not be found", 404);
}
throw new Exception("Not allowed to execute given command.", 403);
}