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

github.com/nextcloud/ocsms.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2014-09-15 22:39:31 +0400
committerLoic Blot <loic.blot@unix-experience.fr>2014-09-15 22:39:31 +0400
commitfb0083a28aee5a6ef4344b649e42546162ed5806 (patch)
tree7d4efc9cb50674dbdfa89a0e369edbc995dcaa59 /appinfo/routes.php
parent5d1cababc6a76d4d192055fbcf1ae572a15529ab (diff)
Fix URL for SMS ID getter
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index dede5b9..a96de9c 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -17,5 +17,5 @@ $application->registerRoutes($this, array('routes' => array(
array('name' => 'sms#index', 'url' => '/', 'verb' => 'GET'),
array('name' => 'sms#push', 'url' => '/push', 'verb' => 'POST'),
array('name' => 'sms#replace', 'url' => '/replace', 'verb' => 'POST'),
- array('name' => 'sms#retrieve_all_ids', 'url' => '/get/ids/all', 'verb' => 'GET'),
+ array('name' => 'sms#retrieve_all_ids', 'url' => '/get/smsidlist', 'verb' => 'GET'),
)));