diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2024-12-17 20:11:19 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2024-12-18 12:50:11 +0100 |
commit | 13fefc4612f1f894bef95c4b061058196d68a9f2 (patch) | |
tree | 833b62cb37cd30bdf489e2a51666720c1bdbd099 /apps | |
parent | fe90aa3ffe0a8127a92cf0226333c44ed5b793dc (diff) | |
download | nextcloud-server-13fefc4612f1f894bef95c4b061058196d68a9f2.tar.gz nextcloud-server-13fefc4612f1f894bef95c4b061058196d68a9f2.zip |
feat(Navigation): emit dedicated event for loading additional entriesenh/noid/navigationentryevent
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/lib/App.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/lib/App.php b/apps/files/lib/App.php index b6b0ffa6917..9e6d35a7538 100644 --- a/apps/files/lib/App.php +++ b/apps/files/lib/App.php @@ -10,6 +10,7 @@ namespace OCA\Files; use OC\NavigationManager; use OCA\Files\Service\ChunkedUploadConfig; use OCP\App\IAppManager; +use OCP\EventDispatcher\IEventDispatcher; use OCP\IConfig; use OCP\IGroupManager; use OCP\INavigationManager; @@ -36,6 +37,7 @@ class App { Server::get(IGroupManager::class), Server::get(IConfig::class), Server::get(LoggerInterface::class), + Server::get(IEventDispatcher::class), ); self::$navigationManager->clear(false); } |