aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/App.php
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-08-27 12:13:04 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-09 11:04:36 +0200
commitb0baaaed9dfdce8c2630255d0d1921679579761d (patch)
tree552abcca392fd0e8b0241ff853c636f12fa6bf1c /apps/files/lib/App.php
parent0f732199d22cf85d991f48389c33fb6e76b7eefc (diff)
downloadnextcloud-server-b0baaaed9dfdce8c2630255d0d1921679579761d.tar.gz
nextcloud-server-b0baaaed9dfdce8c2630255d0d1921679579761d.zip
feat(NavigationManager): Add default entries handling
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/files/lib/App.php')
-rw-r--r--apps/files/lib/App.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files/lib/App.php b/apps/files/lib/App.php
index e24f204b744..3fb93df6f1d 100644
--- a/apps/files/lib/App.php
+++ b/apps/files/lib/App.php
@@ -16,6 +16,7 @@ use OCP\IURLGenerator;
use OCP\IUserSession;
use OCP\L10N\IFactory;
use OCP\Server;
+use Psr\Log\LoggerInterface;
class App {
private static ?INavigationManager $navigationManager = null;
@@ -32,7 +33,8 @@ class App {
Server::get(IFactory::class),
Server::get(IUserSession::class),
Server::get(IGroupManager::class),
- Server::get(IConfig::class)
+ Server::get(IConfig::class),
+ Server::get(LoggerInterface::class),
);
self::$navigationManager->clear(false);
}