From b0baaaed9dfdce8c2630255d0d1921679579761d Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 27 Aug 2024 12:13:04 +0200 Subject: feat(NavigationManager): Add default entries handling Signed-off-by: provokateurin --- apps/files/lib/App.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/files/lib/App.php') 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); } -- cgit v1.2.3