30 lines
		
	
	
		
			919 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			919 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * ownCloud - Richdocuments App
 | |
|  *
 | |
|  * @author Victor Dubiniuk
 | |
|  * @copyright 2013-2014 Victor Dubiniuk victor.dubiniuk@gmail.com
 | |
|  *
 | |
|  * This file is licensed under the Affero General Public License version 3 or
 | |
|  * later.
 | |
|  */
 | |
| 
 | |
| namespace OCA\Richdocuments\AppInfo;
 | |
| 
 | |
| return [
 | |
| 	'routes' => [
 | |
| 		//documents
 | |
| 		['name' => 'document#index', 'url' => 'index', 'verb' => 'GET'],
 | |
| 		['name' => 'document#publicPage', 'url' => '/public', 'verb' => 'GET'],
 | |
| 		['name' => 'document#create', 'url' => 'ajax/documents/create', 'verb' => 'POST'],
 | |
| 
 | |
| 		// WOPI access
 | |
| 		['name' => 'wopi#checkFileInfo', 'url' => 'wopi/files/{fileId}', 'verb' => 'GET'],
 | |
| 		['name' => 'wopi#getFile', 'url' => 'wopi/files/{fileId}/contents', 'verb' => 'GET'],
 | |
| 		['name' => 'wopi#putFile', 'url' => 'wopi/files/{fileId}/contents', 'verb' => 'POST'],
 | |
| 
 | |
| 		//settings
 | |
| 		['name' => 'settings#setSettings', 'url' => 'ajax/admin.php', 'verb' => 'POST'],
 | |
| 	]
 | |
| ];
 |