aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/appinfo
Commit message (Collapse)AuthorAgeFilesLines
* Delay files_sharing's registerMountProvidersVincent Petry2016-06-171-3/+3
| | | | | | | | This moves registerMountProviders until after the sharing backends were registered. In some situations registerMountProviders will trigger listeners which might require filesystem access which itself would mount shares, which itself requires the sharing backends to be initialized.
* Update license headersLukas Reschke2016-05-263-7/+5
|
* Move background job to PSR-4Joas Schilling2016-05-251-2/+2
|
* Move classes from outside lib/ to PSR-4Joas Schilling2016-05-254-150/+4
|
* move motifier from the files_sharing app to the federatedfilessharing appBjörn Schießle2016-05-201-12/+0
|
* Background jobs from info.xml (#24582)Joas Schilling2016-05-123-27/+5
| | | | | | | | | | | | | | * Move background job registration of Federation to info.xml * Move background registration of Files app to info.xml * Move background job registration of files_sharing to info.xml * Move background job registration of files_trashbin to info.xml * Move background job registration of files_versions to info.xml * Move background job registration from user_ldap to info.xml
* Cleanup Files_Sharing CLASSPATHRoeland Jago Douma2016-05-021-7/+0
| | | | | | | | | | * OC\Files\Cache\SharedScanner * OC\Files\Cache\Shared_Cache * OC\Files\Cache\Shared_Permissions * OC\Files\Cache\Shared_Updater * OC\Files\Cache\Shared_Watcher * OCA\Files\Share\Maintainer * OCA\Files\Share\Proxy
* move federated sharing settings to the federatedfilesharing appBjörn Schießle2016-04-222-4/+3
|
* Move SharedStorage et al over to the shareManager and jailRoeland Jago Douma2016-04-191-1/+2
|
* Respect disabled group sharing in sharee endpointRoeland Jago Douma2016-03-221-1/+2
| | | | * Fix tests
* Increase all versions on master which is now 9.1Joas Schilling2016-03-021-2/+2
|
* 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 autodiscovery support to server-to-server sharingLukas Reschke2016-02-261-0/+6
| | | | Adds autodiscovery support to server-to-server sharing as specified in the specification. If no discovery data is found it is using the fallback ownCloud endpoints for legacy support.
* Fix the notification API usageJoas Schilling2016-02-101-0/+5
|
* Revert "Disable the remote sharing notifications until they work properly"Joas Schilling2016-02-101-3/+0
| | | | | | | This reverts commit 6bc93c740194d245bb9a7d1f230ed33461f842a7. Conflicts: apps/files_sharing/lib/external/manager.php
* Update the migration step to include federated sharesRoeland Jago Douma2016-02-082-2/+2
| | | | | Now federated shares will also be updated to the flat reshare model.
* Update the initiator of the share as well in migrationRoeland Jago Douma2016-01-281-0/+1
|
* upgrade to sharing 2.0, remove hierarchical re-sharesBjörn Schießle2016-01-282-5/+5
|
* Directly get from the server containerRoeland Jago Douma2016-01-201-23/+5
| | | | * Updated unit tests
* [Share 2.0] Make link share download use share managerRoeland Jago Douma2016-01-201-1/+5
|
* [Share 2.0] Move tests over the sharemanagerRoeland Jago Douma2016-01-201-4/+8
| | | | Nice side effect... pure unit tests!
* [Share 2.0] Move showing link share to sharing 2.0Roeland Jago Douma2016-01-201-1/+4
|
* Happy new year!Thomas Müller2016-01-125-6/+6
|
* 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
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-12-071-1/+0
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* [Sharing] Respect disabled incoming federated sharesRoeland Jago Douma2015-12-021-1/+3
| | | | | | | Only fetch the incoming federated shares if incoming shares are actually enabled. Fixes #20713
* take the etag of child mounts into account for the folder etagRobin Appelman2015-11-192-31/+1
| | | | this replaces shared etag propagation
* Prepare OCS Share endpointRoeland Jago Douma2015-11-051-5/+8
|
* Update license headersLukas Reschke2015-10-264-2/+5
|
* use correct class nameMorris Jobke2015-10-202-2/+2
|
* Add backgroundjob to expire link sharesRoeland Jago Douma2015-10-203-1/+3
| | | | | | Simple background job to expire the link shares. * added unit tests
* Increase the 2nd digit of shipped appsJoas Schilling2015-10-172-2/+4
|
* Consolidate webdav code - move all to one appThomas Müller2015-10-161-1/+0
|
* Merge pull request #19589 from owncloud/shares-external-mount-providerThomas Müller2015-10-071-0/+12
|\ | | | | Move the setup of external share mounts to a mountprovider
| * extract the mount provider from the managerRobin Appelman2015-10-051-1/+12
| |
| * register the external share mount providerRobin Appelman2015-10-051-0/+1
| |
* | Propagate shares etag when group membership changedVincent Petry2015-10-061-0/+13
| |
* | update licence headers via scriptMorris Jobke2015-10-054-2/+4
|/
* Merge pull request #19487 from owncloud/split_share_middlewareThomas Müller2015-10-052-8/+2
|\ | | | | Split files_sharing middelware
| * sharingcheckmiddleware now handles externalshares as wellRoeland Jago Douma2015-10-022-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge pull request #19522 from owncloud/activity-395-less-sidebar-textThomas Müller2015-10-021-1/+2
|\ \ | | | | | | Activity 395 less sidebar text
| * | Use shorter text on the sidebar for files_sharing activitiesJoas Schilling2015-10-021-1/+2
| |/
* | Made routes remote_shares only againRoeland Jago Douma2015-10-021-8/+8
| | | | | | | | | | | | | | | | Since we need a unique id to accept/reject shares for now we keep the pending shares under remote_shares. * remote_shares/pending lists pending shares * PUT/DELETE to remote_shares/pending/<ID> will accept/reject the share
* | Added '../remote_shares' endpointRoeland Jago Douma2015-10-021-0/+16
| | | | | | | | | | | | * list incoming remote shares at 'remote_shares' * get per share info at 'remote_shares/<ID>' * delete remote share with a DELETE to 'remote_shares/<ID>'
* | Move OCS endpoint ../remote_share to ../pending_sharesRoeland Jago Douma2015-10-021-3/+3
|/
* Disable the remote sharing notifications until they work properlyJoas Schilling2015-09-171-0/+3
|
* now you even can shareArthur Schiwon2015-09-161-0/+1
|
* Add share dialog into share tabVincent Petry2015-09-161-3/+10
|
* refactor share dialog for multi-purpose use (dropdown, sidebar) and better ↵Arthur Schiwon2015-09-161-1/+2
| | | | maintainability