diff options
Diffstat (limited to 'modules/rest')
-rw-r--r-- | modules/rest/helpers/rest.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/rest/helpers/rest.php b/modules/rest/helpers/rest.php index 34852a9e..64a32d40 100644 --- a/modules/rest/helpers/rest.php +++ b/modules/rest/helpers/rest.php @@ -32,7 +32,7 @@ class rest_Core { } /** - * Not implemented + * Not Implemented */ static function not_implemented($log_message=null) { return self::_format_response(t("Service not implemented"), $log_message); @@ -46,7 +46,14 @@ class rest_Core { } /** - * Not implemented + * Resource Not Found + */ + static function not_found($log_message=null) { + return self::_format_response(t("Internal error"), $log_message); + } + + /** + * Success */ static function success($response_data, $message=null) { $response = array("status" => "OK"); |