diff options
author | Felix NĂ¼sse <Felix.nuesse@t-online.de> | 2018-08-27 17:39:39 +0200 |
---|---|---|
committer | fnuesse <felix.nuesse@t-online.de> | 2018-10-10 13:33:44 +0200 |
commit | 8dc449990dcd5a62e4280c1af9769582cf0a719a (patch) | |
tree | d3ec5869e532d23dc7428581a536689031eeff74 /apps/files/appinfo | |
parent | 506f7f29bf976d7755c8f6ba448f1a22176046b7 (diff) | |
download | nextcloud-server-8dc449990dcd5a62e4280c1af9769582cf0a719a.tar.gz nextcloud-server-8dc449990dcd5a62e4280c1af9769582cf0a719a.zip |
fix for favorites-quickaccess: newly added folders dont show up when added to favorites
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/routes.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index 1147bdf9c4f..b32469c8574 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -81,6 +81,11 @@ $application->registerRoutes( 'url' => '/api/v1/toggleShowFolder/{key}', 'verb' => 'POST' ], + [ + 'name' => 'API#getNodeType', + 'url' => '/api/v1/quickaccess/get/NodeType', + 'verb' => 'GET', + ], ] ] ); |