diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-10 23:32:23 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-10 23:32:23 +0100 |
commit | cb2df59b45d4cb35790472f76b06c59b22c6213b (patch) | |
tree | 806c5853512d3ea1a50778d11f6265985c73af13 /application/tests/test_api_v1.php | |
parent | c8ff6f56b9b971f88fed840c2af50df11b7dc948 (diff) |
api: Require the version to start with v
Makes the URL easier to understand (especially the v1 case).
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/tests/test_api_v1.php')
-rw-r--r-- | application/tests/test_api_v1.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/tests/test_api_v1.php b/application/tests/test_api_v1.php index 7fe06ca36..bba0f9180 100644 --- a/application/tests/test_api_v1.php +++ b/application/tests/test_api_v1.php @@ -23,7 +23,7 @@ class test_api_v1 extends Test { private function uploadFile($apikey, $file) { - $ret = $this->CallAPI("POST", "$this->server/api/1.0.0/file/upload", array( + $ret = $this->CallAPI("POST", "$this->server/api/v1.0.0/file/upload", array( "apikey" => $apikey, "file[1]" => curl_file_create($file), )); @@ -59,7 +59,7 @@ class test_api_v1 extends Test { private function callEndpoint($verb, $endpoint, $data) { - return $this->CallAPI($verb, "$this->server/api/1.0.0/$endpoint", $data); + return $this->CallAPI($verb, "$this->server/api/v1.0.0/$endpoint", $data); } public function test_callPrivateEndpointsWithoutApikey() |