1
0
espelhamento de https://github.com/nextcloud/server.git sincronizado 2024-07-28 08:15:55 +02:00
nextcloud/tests/enable_all.php
Roeland Jago Douma 9e76577ead
Add tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-01-25 13:44:47 +01:00

28 linhas
601 B
PHP

<?php
/**
* Copyright (c) 2012 Thomas Müller <thomas.mueller@tmit.eu>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
require_once __DIR__.'/../lib/base.php';
function enableApp($app) {
try {
(new \OC_App())->enable($app);
} catch (Exception $e) {
echo $e;
}
}
enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('user_ldap');
enableApp('files_versions');
enableApp('provisioning_api');
enableApp('federation');
enableApp('federatedfilesharing');
enableApp('admin_audit');