1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-21 05:13:18 +00:00

Add template response, we will do tests by this interface

This commit is contained in:
Loïc Blot (@U-Exp)
2014-09-12 14:08:01 +02:00
parent 5d1112f677
commit 445dc8abcf
2 changed files with 9 additions and 2 deletions
+2 -1
View File
@@ -22,5 +22,6 @@ namespace OCA\OcSms\AppInfo;
$application = new Application();
$application->registerRoutes($this, array('routes' => array(
array('name' => 'sms#push', 'url' => '/push', 'verb' => 'GET'),
array('name' => 'sms#index', 'url' => '/', 'verb' => 'GET'),
array('name' => 'sms#push', 'url' => '/push', 'verb' => 'POST'),
)));