diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-02 21:23:05 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-02 21:23:05 +0100 |
commit | 81f4811300c71a1d6ad2dae9fe698476ef98c4e5 (patch) | |
tree | 24de16f4642344d2d4eb8e50b922e8d3b77d39f0 | |
parent | 4b357274bb3d0295c84d9ec9ca6689270865df8f (diff) | |
parent | 32d95633594547faaf841d90d970bf333a0c9282 (diff) | |
download | nextcloud-server-81f4811300c71a1d6ad2dae9fe698476ef98c4e5.tar.gz nextcloud-server-81f4811300c71a1d6ad2dae9fe698476ef98c4e5.zip |
Merge pull request #13083 from owncloud/fix-provisioning-api
Add provisioning_api app.php so app is detected
-rw-r--r-- | apps/provisioning_api/appinfo/app.php | 23 | ||||
-rw-r--r-- | apps/provisioning_api/tests/groupsTest.php | 2 |
2 files changed, 24 insertions, 1 deletions
diff --git a/apps/provisioning_api/appinfo/app.php b/apps/provisioning_api/appinfo/app.php new file mode 100644 index 00000000000..671d668bfac --- /dev/null +++ b/apps/provisioning_api/appinfo/app.php @@ -0,0 +1,23 @@ +<?php + +/** + * ownCloud + * + * @copyright (C) 2014 ownCloud, Inc. + * + * @author Tom <tom@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */
\ No newline at end of file diff --git a/apps/provisioning_api/tests/groupsTest.php b/apps/provisioning_api/tests/groupsTest.php index 5e4800dfef1..0fb6e18a3eb 100644 --- a/apps/provisioning_api/tests/groupsTest.php +++ b/apps/provisioning_api/tests/groupsTest.php @@ -67,8 +67,8 @@ class Test_Provisioning_Api_Groups extends PHPUnit_Framework_TestCase { $group = uniqid(); \OC_Group::createGroup($group); - \OC_Group::addToGroup($users[1], $group); \OC_Group::addToGroup($users[0], $group); + \OC_Group::addToGroup($users[1], $group); \OC_SubAdmin::createSubAdmin($users[0], $group); |