summaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api
Commit message (Collapse)AuthorAgeFilesLines
* OCS API endpoint to resend welcome messageMorris Jobke2017-02-283-1/+619
| | | | | | | | | | | | * send a POST request to ocs/v1.php/cloud/users/USERNAME/resendWelcomeMessage to trigger the welcome message to be send * fixes #3367 example curl statement: curl -i https://example.org/ocs/v1.php/cloud/users/USERNAME/welcome -H "OCS-APIRequest: true" -u admin:password -X POST Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Refactor provision api app's UserControllerTestChristoph Wurst2017-02-281-76/+67
| | | | | | | | * Replace deprecated getMock with createMock * Use createMock consistently * Use php's ::class references Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* add groups to user info outputBjoern Schiessle2017-02-092-3/+36
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* make sure that 'getCurrentUser' gets an array in order to manipulate the ↵Bjoern Schiessle2017-01-262-36/+83
| | | | | | data to match the old API Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* unify endpoints form core and the the provisioning apiBjoern Schiessle2017-01-253-2/+112
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* add data from the users profile to the provisioning apiBjoern Schiessle2017-01-242-4/+65
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Allow subadmins to add people to groups via provisioning apiJoas Schilling2017-01-182-7/+151
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Make sure subadmins can not delete users from their last subadmin groupJoas Schilling2017-01-182-0/+76
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* No need to check the subadmin againJoas Schilling2017-01-182-21/+11
| | | | | | | The user needs to be a subadmin of the group, otherwise they are not allowed to remove anyone from the group Signed-off-by: Joas Schilling <coding@schilljs.com>
* Adds provisioning middleware testsRoeland Jago Douma2016-12-301-0/+122
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update app versions and requirementsJoas Schilling2016-12-131-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Require sudo mode on the provisioning APIJoas Schilling2016-12-053-7/+24
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use 11.0 instead 9.2Lukas Reschke2016-11-151-1/+1
| | | | | | As discussed we're changing the version from 9.2 to 11.0 to make some more sense. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Use new appstore APILukas Reschke2016-10-312-24/+5
| | | | | | This change introduces the new appstore API in Nextcloud. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Add unit testsJoas Schilling2016-10-212-5/+386
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Make AppConfig part of the public APIJoas Schilling2016-10-212-8/+167
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Svgo optimizationskjnldsv2016-09-271-4/+1
| | | | Signed-off-by: John Molakvoæ <fremulon@protonmail.com>
* add viewBox to app icon for proper scaling in FirefoxMorris Jobke2016-08-171-1/+1
|
* Allow to retrieve the quota itself via the provisioning apiJoas Schilling2016-08-171-0/+1
|
* Move Apps to OCSControllerRoeland Jago Douma2016-08-143-64/+78
|
* Move Users to OCSControllerRoeland Jago Douma2016-08-143-625/+475
|
* Move Groups over to OCSControllerRoeland Jago Douma2016-08-143-214/+138
| | | | | * Take advantage of the AppFramework * Fix tests
* Add ProvisioningAPI middlewareRoeland Jago Douma2016-08-143-0/+103
| | | | | | | | | | The provisioning API has 3 access levels: * Admin * SubAdmin * User This middleware adds a check for the SubAdmin part.
* Increment the versions and adjust the capitilizationJoas Schilling2016-08-081-1/+1
|
* Also increase the min versionJoas Schilling2016-07-221-1/+1
|
* bumb compatible app versions for core appsRobin Appelman2016-07-221-1/+1
|
* Merge pull request #500 from nextcloud/bump_versionJoas Schilling2016-07-221-1/+1
|\ | | | | Bump version
| * Increase app versionsJoas Schilling2016-07-211-1/+1
| |
* | Fix apps/Joas Schilling2016-07-218-24/+30
|/
* Fix Warnings Provisioning APIRoeland Jago Douma2016-07-126-330/+417
| | | | | * OC_OCS_Result is deprecated * getMock is deprecated in phpunit 5.4
* Update license headersLukas Reschke2016-05-267-9/+10
|
* Move Provisioning api to PSR-4 (#24510)Joas Schilling2016-05-118-176/+194
| | | | | | | | * Move app to PSR-4 * Fix setUp method * Fix the tests
* Add provisioning api to enable and disable usersThomas Müller2016-05-023-19/+128
|
* Increase all versions on master which is now 9.1Joas Schilling2016-03-021-2/+2
|
* Remove Scrutinizer Auto FixerLukas Reschke2016-03-011-1/+0
|
* Update author informationLukas Reschke2016-03-012-0/+2
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* More fixed tests :)Arthur Schiwon2016-02-091-12/+9
|
* Consolidate getQuota and setQuota methods in User instanceArthur Schiwon2016-02-091-1/+1
|
* Introduce IUser::setEMailAddress and add hook mechanismThomas Müller2016-01-202-4/+4
|
* Add a new app type that can not be enabled for groupsJoas Schilling2016-01-141-3/+2
|
* Happy new year!Thomas Müller2016-01-128-8/+13
|
* Update log message when error occurs during addGroupTom Needham2016-01-081-1/+1
|
* Fix provisioning API unit testRoeland Jago Douma2016-01-081-1/+1
|
* Remove unnecessary group name validationTom Needham2016-01-082-1/+22
|
* Remove deprecated shipped flag from info.xml which has no use anymoreJoas Schilling2016-01-071-1/+0
|
* Add ownCloud min and max version for shipped appsJoas Schilling2016-01-071-1/+1
|
* Inject OCSClientLukas Reschke2016-01-063-18/+25
| | | | Fixes https://github.com/owncloud/core/issues/21451
* More fixes to the docsJoas Schilling2015-12-081-4/+6
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-12-071-0/+6
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* User IUser::getEMailAddress() all over the placeThomas Müller2015-12-022-30/+27
|