Skip to content

Commit

Permalink
Merge pull request #10621 from nextcloud/feature/noid/add-tos-to-ente…
Browse files Browse the repository at this point in the history
…rprise-bundle

Add the ToS app to the enterprise bundle
  • Loading branch information
blizzz authored Aug 13, 2018
2 parents 7ba5723 + e1d3965 commit 8601bbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/private/App/AppStore/Bundles/EnterpriseBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,22 @@ 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',
'files_retention',
'files_automatedtagging',
'user_saml',
'files_accesscontrol',
'terms_of_service',
];
}

Expand Down
1 change: 1 addition & 0 deletions tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public function setUp() {
'files_automatedtagging',
'user_saml',
'files_accesscontrol',
'terms_of_service',
];
}
}

0 comments on commit 8601bbc

Please sign in to comment.