Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-04-18 18:29:59 +0300
committerJoas Schilling <coding@schilljs.com>2017-04-18 18:29:59 +0300
commit8ae1023e60ca188a12caf5b3abf51261a4332ad7 (patch)
treee6fd291741ea2a90303e5232e887f38444ce7982 /appinfo
parent475ad40e443a1be52fa05134cfabf75d1ac9a2b6 (diff)
Fix routes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 277efd4..3873d18 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -15,7 +15,7 @@
<licence>AGPL</licence>
<author>Joas Schilling</author>
- <version>1.2.2</version>
+ <version>2.0.0</version>
<types>
<logging/>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 4f16200..205c353 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -24,7 +24,7 @@ return [
['name' => 'Endpoint#listNotifications', 'url' => '/api/{apiVersion}/notifications', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v(1|2)']],
['name' => 'Endpoint#getNotification', 'url' => '/api/{apiVersion}/notifications/{id}', 'verb' => 'GET', 'requirements' => ['apiVersion' => 'v(1|2)', 'id' => '\d+']],
['name' => 'Endpoint#deleteNotification', 'url' => '/api/{apiVersion}/notifications/{id}', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => 'v(1|2)', 'id' => '\d+']],
- ['name' => 'Push#registerDevice', 'url' => '/api/v3/push', 'verb' => 'POST'],
- ['name' => 'Push#removeDevice', 'url' => '/api/v3/push', 'verb' => 'DELETE'],
+ ['name' => 'Push#registerDevice', 'url' => '/api/{apiVersion}/push', 'verb' => 'POST', 'requirements' => ['apiVersion' => 'v2']],
+ ['name' => 'Push#removeDevice', 'url' => '/api/{apiVersion}/push', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => 'v2']],
],
];