Skip to content
Snippets Groups Projects
Unverified Commit e1d39658 authored by Joas Schilling's avatar Joas Schilling
Browse files

Add the ToS app to the enterprise bundle

parent 88603e98
No related branches found
No related tags found
No related merge requests found
...@@ -28,14 +28,14 @@ class EnterpriseBundle extends Bundle { ...@@ -28,14 +28,14 @@ class EnterpriseBundle extends Bundle {
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
public function getName() { public function getName(): string {
return (string)$this->l10n->t('Enterprise bundle'); return $this->l10n->t('Enterprise bundle');
} }
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
public function getAppIdentifiers() { public function getAppIdentifiers(): array {
return [ return [
'admin_audit', 'admin_audit',
'user_ldap', 'user_ldap',
...@@ -43,6 +43,7 @@ class EnterpriseBundle extends Bundle { ...@@ -43,6 +43,7 @@ class EnterpriseBundle extends Bundle {
'files_automatedtagging', 'files_automatedtagging',
'user_saml', 'user_saml',
'files_accesscontrol', 'files_accesscontrol',
'terms_of_service',
]; ];
} }
......
...@@ -36,6 +36,7 @@ class EnterpriseBundleTest extends BundleBase { ...@@ -36,6 +36,7 @@ class EnterpriseBundleTest extends BundleBase {
'files_automatedtagging', 'files_automatedtagging',
'user_saml', 'user_saml',
'files_accesscontrol', 'files_accesscontrol',
'terms_of_service',
]; ];
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment