From 325e8bea16e9853c98af6e2f70c3693ede2a2bf9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 17 Aug 2018 13:27:48 +0200 Subject: [PATCH] add deck and mail to the groupware bundle, remove talk Signed-off-by: Bjoern Schiessle --- lib/private/App/AppStore/Bundles/GroupwareBundle.php | 3 ++- tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/private/App/AppStore/Bundles/GroupwareBundle.php b/lib/private/App/AppStore/Bundles/GroupwareBundle.php index 042d97c3efc09..4f0a815bfc85d 100644 --- a/lib/private/App/AppStore/Bundles/GroupwareBundle.php +++ b/lib/private/App/AppStore/Bundles/GroupwareBundle.php @@ -39,7 +39,8 @@ public function getAppIdentifiers() { return [ 'calendar', 'contacts', - 'spreed', + 'deck', + 'mail' ]; } diff --git a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php index f2f9dcc5ccc44..ccff5dcbd34cc 100644 --- a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php +++ b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php @@ -32,7 +32,8 @@ public function setUp() { $this->bundleAppIds = [ 'calendar', 'contacts', - 'spreed', + 'deck', + 'mail' ]; } }