mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #10621 from nextcloud/feature/noid/add-tos-to-enterprise-bundle
Add the ToS app to the enterprise bundle
This commit is contained in:
commit
8601bbc35d
2 changed files with 5 additions and 3 deletions
|
|
@ -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',
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ class EnterpriseBundleTest extends BundleBase {
|
|||
'files_automatedtagging',
|
||||
'user_saml',
|
||||
'files_accesscontrol',
|
||||
'terms_of_service',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue