Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-04-27 10:05:45 +0300
committerGitHub <noreply@github.com>2020-04-27 10:05:45 +0300
commitcf69ebc5170fd9ccbf681c3aafa4498d3c5173a8 (patch)
treec97db74476a2bf82c5d3bc77f523368811512192 /lib/AppInfo
parent3e75418de5f591b643971a3424c5f8de4a88950d (diff)
parent858da6175a56ffcf4e23197816c717f8a56e7de0 (diff)
Merge pull request #2972 from nextcloud/fix/contacts-integration-services
Use all available group services
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/BootstrapSingleton.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/AppInfo/BootstrapSingleton.php b/lib/AppInfo/BootstrapSingleton.php
index 9d074e3c4..bcaf5f476 100644
--- a/lib/AppInfo/BootstrapSingleton.php
+++ b/lib/AppInfo/BootstrapSingleton.php
@@ -51,9 +51,6 @@ use OCA\Mail\Listener\SaveSentMessageListener;
use OCA\Mail\Listener\TrashMailboxCreatorListener;
use OCA\Mail\Service\Attachment\AttachmentService;
use OCA\Mail\Service\AvatarService;
-use OCA\Mail\Service\Group\IGroupService;
-use OCA\Mail\Service\Group\NextcloudGroupService;
-use OCA\Mail\Service\Group\ContactsGroupService;
use OCA\Mail\Service\MailManager;
use OCA\Mail\Service\Search\MailSearch;
use OCA\Mail\Service\MailTransmission;
@@ -119,9 +116,6 @@ class BootstrapSingleton {
$container->registerMiddleWare('ErrorMiddleware');
$container->registerAlias('ProvisioningMiddleware', ProvisioningMiddleware::class);
$container->registerMiddleWare('ProvisioningMiddleware');
-
- $container->registerAlias(IGroupService::class, NextcloudGroupService::class);
- $container->registerAlias(IGroupService::class, ContactsGroupService::class);
}
private function registerEvents(IAppContainer $container): void {