diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2018-08-13 15:47:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-13 15:47:15 +0200 |
commit | 8601bbc35d915d6dc1c847560d148981c518c27f (patch) | |
tree | a2ca827a5409a4daf2e98d7468cb1e6a55e5c27b /lib | |
parent | 7ba57233bff08033da0e58049a4710b370627e0b (diff) | |
parent | e1d39658834a96aae88cc81c84d67add2ec43430 (diff) | |
download | nextcloud-server-8601bbc35d915d6dc1c847560d148981c518c27f.tar.gz nextcloud-server-8601bbc35d915d6dc1c847560d148981c518c27f.zip |
Merge pull request #10621 from nextcloud/feature/noid/add-tos-to-enterprise-bundle
Add the ToS app to the enterprise bundle
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/App/AppStore/Bundles/EnterpriseBundle.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php index d32fd8c856e..96ede656dae 100644 --- a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php +++ b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php @@ -28,14 +28,14 @@ class EnterpriseBundle extends Bundle { /** * {@inheritDoc} */ - public function getName() { - return (string)$this->l10n->t('Enterprise bundle'); + public function getName(): string { + return $this->l10n->t('Enterprise bundle'); } /** * {@inheritDoc} */ - public function getAppIdentifiers() { + public function getAppIdentifiers(): array { return [ 'admin_audit', 'user_ldap', @@ -43,6 +43,7 @@ class EnterpriseBundle extends Bundle { 'files_automatedtagging', 'user_saml', 'files_accesscontrol', + 'terms_of_service', ]; } |