diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-08-01 13:56:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 13:56:09 +0200 |
commit | 014fcb0131e5ae0ce47c4b493e2aaab50105fc14 (patch) | |
tree | 1451dcbecbfdc2a5c3fcee763d442aca2b56b730 /apps/comments | |
parent | 1ddf8d80957f4fd36274f206ae6ebabce4c7d1fc (diff) | |
parent | a6d421e76735982c28e9094d3c23d616cce47296 (diff) | |
download | nextcloud-server-014fcb0131e5ae0ce47c4b493e2aaab50105fc14.tar.gz nextcloud-server-014fcb0131e5ae0ce47c4b493e2aaab50105fc14.zip |
Merge pull request #45950 from nextcloud/chore/remove-depreacted-search
chore: Remove deprecated legacy search backend
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/lib/AppInfo/Application.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/comments/lib/AppInfo/Application.php b/apps/comments/lib/AppInfo/Application.php index 15b576938d2..f0a7b063c9a 100644 --- a/apps/comments/lib/AppInfo/Application.php +++ b/apps/comments/lib/AppInfo/Application.php @@ -13,7 +13,6 @@ use OCA\Comments\Listener\LoadSidebarScripts; use OCA\Comments\MaxAutoCompleteResultsInitialState; use OCA\Comments\Notification\Notifier; use OCA\Comments\Search\CommentsSearchProvider; -use OCA\Comments\Search\LegacyProvider; use OCA\Files\Event\LoadAdditionalScriptsEvent; use OCA\Files\Event\LoadSidebar; use OCP\AppFramework\App; @@ -22,7 +21,6 @@ use OCP\AppFramework\Bootstrap\IBootstrap; use OCP\AppFramework\Bootstrap\IRegistrationContext; use OCP\Comments\CommentsEntityEvent; use OCP\Comments\CommentsEvent; -use OCP\ISearch; class Application extends App implements IBootstrap { public const APP_ID = 'comments'; @@ -59,6 +57,5 @@ class Application extends App implements IBootstrap { } public function boot(IBootContext $context): void { - $context->getServerContainer()->get(ISearch::class)->registerProvider(LegacyProvider::class, ['apps' => ['files']]); } } |