diff options
author | Joas Schilling <coding@schilljs.com> | 2018-08-09 16:12:48 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-08-09 16:12:48 +0200 |
commit | e1d39658834a96aae88cc81c84d67add2ec43430 (patch) | |
tree | 904437f096ee353ad43696ec2e3aeafdc87f16e2 /lib/private/App | |
parent | 88603e98f89de716eedb6b1c94e0bc1f3366db3c (diff) | |
download | nextcloud-server-e1d39658834a96aae88cc81c84d67add2ec43430.tar.gz nextcloud-server-e1d39658834a96aae88cc81c84d67add2ec43430.zip |
Add the ToS app to the enterprise bundle
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/App')
-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', ]; } |