diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-08-30 10:56:02 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-22 14:13:32 +0200 |
commit | fd6daf8d195b985fcdec82c0c53e8ba230765f41 (patch) | |
tree | dbfbbfb8424604daeb0fba63a8e0d2b7cda9a3ac /core/routes.php | |
parent | 2b31b8289169e35be7bb1b129e9a978ddcd8f478 (diff) | |
download | nextcloud-server-fd6daf8d195b985fcdec82c0c53e8ba230765f41.tar.gz nextcloud-server-fd6daf8d195b985fcdec82c0c53e8ba230765f41.zip |
AutoCompletion backend
* introduce a Controller for requests
* introduce result sorting mechanism
* extend Comments to retrieve commentors (actors) in a tree
* add commenters sorter
* add share recipients sorter
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php index af445d9da8f..75d8fb140a7 100644 --- a/core/routes.php +++ b/core/routes.php @@ -62,6 +62,7 @@ $application->registerRoutes($this, [ ['name' => 'Js#getJs', 'url' => '/js/{appName}/{fileName}', 'verb' => 'GET'], ['name' => 'contactsMenu#index', 'url' => '/contactsmenu/contacts', 'verb' => 'POST'], ['name' => 'contactsMenu#findOne', 'url' => '/contactsmenu/findOne', 'verb' => 'POST'], + ['name' => 'AutoComplete#get', 'url' => 'autocomplete/get', 'verb' => 'GET'] ], 'ocs' => [ ['root' => '/cloud', 'name' => 'OCS#getCapabilities', 'url' => '/capabilities', 'verb' => 'GET'], |