summaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo/routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/appinfo/routes.php')
-rw-r--r--apps/files/appinfo/routes.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php
index 0d1449ff355..a9d8ba0a1b9 100644
--- a/apps/files/appinfo/routes.php
+++ b/apps/files/appinfo/routes.php
@@ -76,6 +76,66 @@ $application->registerRoutes(
'url' => '/ajax/getstoragestats.php',
'verb' => 'GET',
],
+ [
+ 'name' => 'API#showQuickAccess',
+ 'url' => '/api/v1/quickaccess/set/showList',
+ 'verb' => 'GET',
+ ],
+ [
+ 'name' => 'API#getShowQuickAccess',
+ 'url' => '/api/v1/quickaccess/get/showList',
+ 'verb' => 'GET',
+ ],
+ [
+ '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',
+ ],
]
]
);