aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/controllers/externalsharescontroller.php
Commit message (Collapse)AuthorAgeFilesLines
* Move lib/ to PSR-4Joas Schilling2016-05-251-149/+0
|
* Remove Scrutinizer Auto FixerLukas Reschke2016-03-011-1/+0
|
* Update author informationLukas Reschke2016-03-011-0/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Add missing trailing slashLukas Reschke2016-03-011-2/+2
|
* use ocs discover endpoint to test remoteRobin Appelman2016-03-011-4/+17
|
* Happy new year!Thomas Müller2016-01-121-1/+2
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-12-071-2/+1
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Update license headersLukas Reschke2015-10-261-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-0/+1
|
* sharingcheckmiddleware now handles externalshares as wellRoeland Jago Douma2015-10-021-17/+8
| | | | | | | | | | | | | | | Added new annotations for the externalsharescontroller class * @NoOutgoingFederatedSharingRequired * @NoIncomingFederatedSharingRequired By default both are required for all functions in the externalSharesController. A proper exception is thrown and then a 405 is returned instead of the default error page. Since it is only an API endpoint this makes more sense. Unit tests added and updated
* Use IClientService to check for remote ownCloud instancesLukas Reschke2015-08-221-3/+47
| | | | | | | 1. Allows to set a timeout (though still not perfect but way better than before) 2. Allows to have unit tests 3. I also added unit tests for the existing controller code 4. Corrected PHPDoc on IClient
* update license headers and authorsMorris Jobke2015-06-251-0/+1
|
* Fix PHPDoc for the ext. share controllerLukas Reschke2015-05-041-0/+1
|
* Update license headersJenkins for ownCloud2015-03-261-5/+17
|
* Revert "Updating license headers"Morris Jobke2015-02-261-16/+6
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-6/+16
|
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-0/+86
Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.