mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 10:00:33 -04:00
test: Enable all default apps
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
b9984cb3ef
commit
be0fbacfdf
1 changed files with 8 additions and 10 deletions
|
|
@ -15,13 +15,11 @@ function enableApp($app) {
|
|||
}
|
||||
}
|
||||
|
||||
enableApp('files_sharing');
|
||||
enableApp('files_trashbin');
|
||||
enableApp('encryption');
|
||||
enableApp('user_ldap');
|
||||
enableApp('files_versions');
|
||||
enableApp('provisioning_api');
|
||||
enableApp('federation');
|
||||
enableApp('federatedfilesharing');
|
||||
enableApp('admin_audit');
|
||||
enableApp('webhook_listeners');
|
||||
foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) {
|
||||
if ($file->isDot()) {
|
||||
continue;
|
||||
}
|
||||
if (!file_exists($file->getPathname() . '/.git')) {
|
||||
enableApp($file->getFilename());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue