summaryrefslogtreecommitdiffstats
path: root/appinfo/routes.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-02-17 15:17:40 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-02-17 15:17:40 +0100
commit816a8beb0b77164aa60a7fe23b4b3d0881985be3 (patch)
treedca5921f4b39b7c2c911487901dd2638a492b059 /appinfo/routes.php
parent77365fe363729efa1d2c9c668d7dc2d35c8c6a71 (diff)
add status api route5.2.4
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 4900d3885..c19c20a08 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -58,6 +58,7 @@ return ['routes' => [
// API 1.2
['name' => 'utility_api#version', 'url' => '/api/v1-2/version', 'verb' => 'GET'],
+['name' => 'utility_api#status', 'url' => '/api/v1-2/status', 'verb' => 'GET'],
['name' => 'utility_api#before_update', 'url' => '/api/v1-2/cleanup/before-update', 'verb' => 'GET'],
['name' => 'utility_api#after_update', 'url' => '/api/v1-2/cleanup/after-update', 'verb' => 'GET'],
['name' => 'utility_api#preflighted_cors', 'url' => '/api/v1-2/{path}', 'verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],