diff options
author | fnuesse <felix.nuesse@t-online.de> | 2018-07-21 00:30:04 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-08 09:23:54 +0200 |
commit | 7a78e0c64147116f90f40b4b92fd7e132982223f (patch) | |
tree | cb7e145a3d15a95d707b5c9e096f09ab808a5e13 /apps/files/appinfo | |
parent | e595cad8805c3fdacc4eac2efad40eff57b80073 (diff) | |
download | nextcloud-server-7a78e0c64147116f90f40b4b92fd7e132982223f.tar.gz nextcloud-server-7a78e0c64147116f90f40b4b92fd7e132982223f.zip |
Cleanup of leftover-sorting-code from quickaccess-feature #9714 #9720
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/routes.php | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index 44663d185d1..1147bdf9c4f 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -81,56 +81,6 @@ $application->registerRoutes( 'url' => '/api/v1/toggleShowFolder/{key}', 'verb' => 'POST' ], - [ - 'name' => 'API#getShowQuickaccessSettings', - 'url' => '/api/v1/quickaccess/showsettings', - 'verb' => 'GET', - ], - [ - 'name' => 'API#setShowQuickaccessSettings', - 'url' => '/api/v1/quickaccess/set/showsettings', - 'verb' => 'GET', - ], - [ - 'name' => 'API#setSortingStrategy', - 'url' => '/api/v1/quickaccess/set/SortingStrategy', - 'verb' => 'GET', - ], - [ - 'name' => 'API#setReverseQuickaccess', - 'url' => '/api/v1/quickaccess/set/ReverseList', - 'verb' => 'GET', - ], - [ - 'name' => 'API#getSortingStrategy', - 'url' => '/api/v1/quickaccess/get/SortingStrategy', - 'verb' => 'GET', - ], - [ - 'name' => 'API#getReverseQuickaccess', - 'url' => '/api/v1/quickaccess/get/ReverseList', - 'verb' => 'GET', - ], - [ - 'name' => 'API#getFavoritesFolder', - 'url' => '/api/v1/quickaccess/get/FavoriteFolders/', - 'verb' => 'GET' - ], - [ - 'name' => 'API#setSortingOrder', - 'url' => '/api/v1/quickaccess/set/CustomSortingOrder', - 'verb' => 'GET', - ], - [ - 'name' => 'API#getSortingOrder', - 'url' => '/api/v1/quickaccess/get/CustomSortingOrder', - 'verb' => 'GET', - ], - [ - 'name' => 'API#getNodeType', - 'url' => '/api/v1/quickaccess/get/NodeType', - 'verb' => 'GET', - ], ] ] ); |