diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-04-26 01:04:42 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-04-26 20:07:52 +0200 |
commit | a05295fca3477923fdc0edade590e3e5d7762673 (patch) | |
tree | fac7c128b1f89f70ab212265baf81013112a567d | |
parent | 0651d66181889e24c5667f3542544663d4f0eed1 (diff) | |
download | nextcloud-server-a05295fca3477923fdc0edade590e3e5d7762673.tar.gz nextcloud-server-a05295fca3477923fdc0edade590e3e5d7762673.zip |
Add spreed to Groupware bundle
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
-rw-r--r-- | lib/private/App/AppStore/Bundles/GroupwareBundle.php | 1 | ||||
-rw-r--r-- | tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/App/AppStore/Bundles/GroupwareBundle.php b/lib/private/App/AppStore/Bundles/GroupwareBundle.php index f6c7d336038..7e7414f69c7 100644 --- a/lib/private/App/AppStore/Bundles/GroupwareBundle.php +++ b/lib/private/App/AppStore/Bundles/GroupwareBundle.php @@ -37,6 +37,7 @@ class GroupwareBundle extends Bundle { return [ 'calendar', 'contacts', + 'spreed', ]; } diff --git a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php index a682207e72f..f2f9dcc5ccc 100644 --- a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php +++ b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php @@ -32,6 +32,7 @@ class GroupwareBundleTest extends BundleBase { $this->bundleAppIds = [ 'calendar', 'contacts', + 'spreed', ]; } } |