mirror of
				https://github.com/nerzhul/ocsms.git
				synced 2025-10-31 02:17:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			649 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			649 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * ownCloud - ocsms
 | |
|  *
 | |
|  * This file is licensed under the Affero General Public License version 3 or
 | |
|  * later. See the COPYING file.
 | |
|  *
 | |
|  * @author Loic Blot <loic.blot@unix-experience.fr>
 | |
|  * @copyright Loic Blot 2014
 | |
|  */
 | |
| 
 | |
| namespace OCA\OcSms\AppInfo;
 | |
| 
 | |
| $application = new Application();
 | |
| 
 | |
| $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/smsidlist', 'verb' => 'GET'),
 | |
| )));
 |