aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #22206 from owncloud/share2_migration_with_federatedThomas Müller2016-02-084-6/+25
|\ | | | | Update the migration step to include federated shares
| * Update the migration step to include federated sharesRoeland Jago Douma2016-02-084-6/+25
| | | | | | | | | | Now federated shares will also be updated to the flat reshare model.
* | Respect not allowing outgoing sharesRoeland Jago Douma2016-02-082-3/+27
| |
* | Update OCS Share API to use federated share providerRoeland Jago Douma2016-02-082-15/+31
|/
* Even single shares are returned as arrayRoeland Jago Douma2016-02-082-2/+2
| | | | | | | When fetching a single share using ../shares/<ID> we should still return an array of shares. Fixes #22189
* Merge pull request #22159 from owncloud/fix_21678Thomas Müller2016-02-051-0/+6
|\ | | | | Gracefull handle link shares rename hook
| * Gracefull handle link shares rename hookRoeland Jago Douma2016-02-051-0/+6
| | | | | | | | | | | | | | Fixes #21678 The hook is called on all renames. However when we use a link share the getUserFolder fails. We now just opt out.
* | Use HTTPS instead of HTTPLukas Reschke2016-02-051-1/+1
|/ | | This is now supported by github.io
* [Share 2.0] Fix public link sharingRoeland Jago Douma2016-02-032-26/+32
|
* [Share 2.0] Fix OCS endpointRoeland Jago Douma2016-02-032-108/+123
|
* Merge pull request #22095 from owncloud/public_link_with_portThomas Müller2016-02-032-10/+4
|\ | | | | Public link downloads should work on instance on non default port
| * Construct valid URLRoeland Jago Douma2016-02-032-10/+4
| |
* | [Share 2.0] Use GenericShareExceptionRoeland Jago Douma2016-02-022-28/+8
| |
* | [Share 2.0] Add exceptions to OCPRoeland Jago Douma2016-02-024-8/+9
|/
* Filter contacts from the local system addressbook - remote share with local ↵Thomas Müller2016-02-021-0/+3
| | | | users is not allowed
* In some cases $contact['CLOUD'] is not an arrayThomas Müller2016-02-021-1/+5
|
* Merge pull request #22015 from owncloud/share-no-permissionsThomas Müller2016-02-021-6/+18
|\ | | | | Block shares that dont have the correct source permissions
| * Block shares that dont have the correct source permissionsRobin Appelman2016-01-291-6/+18
| |
* | Add path filter to OCS Share API ?shared_with_me=trueRoeland Jago Douma2016-01-291-7/+11
| | | | | | | | | | | | This allows all clients to quickly get the share info for a given path. Instead of returning everything and filtering it then manually on the client side.
* | Update the initiator of the share as well in migrationRoeland Jago Douma2016-01-283-7/+74
| |
* | Update reshares in batches as not to run out of memoryRoeland Jago Douma2016-01-282-14/+97
| |
* | upgrade to sharing 2.0, remove hierarchical re-sharesBjörn Schießle2016-01-284-48/+348
|/
* Fix OCS unit tests after two share mergesRoeland Jago Douma2016-01-282-32/+32
| | | | | * Use getNode * Return IShare object so typechecking is happy
* Merge pull request #21960 from owncloud/share2_ocs_fix_passing_empty_stringsThomas Müller2016-01-282-32/+744
|\ | | | | Share2 ocs fix passing empty strings
| * [Share 2.0] Allow using permissions to update link shareRoeland Jago Douma2016-01-272-14/+113
| |
| * [Share 2.0] Still allow isolated updatesRoeland Jago Douma2016-01-272-11/+125
| | | | | | | | Still allow isolated updates of parameters
| * [Share 2.0] Also handle empty parameter in updateShareRoeland Jago Douma2016-01-272-24/+283
| | | | | | | | | | * More sanity checks * More unit tests
| * [Share 2.0] When passing empty strings don't failRoeland Jago Douma2016-01-272-10/+250
| | | | | | | | | | The password and expiration date can be set to empty strings when created. This is now handled gracefully.
* | cleanup shared cacheRobin Appelman2016-01-284-541/+59
| |
* | [Share 2.0] Fix interfaces and commentsRoeland Jago Douma2016-01-284-33/+34
| | | | | | | | | | | | | | | | * Made comments more clear * Removed unneeded methods * IShares shareTime is now a proper DateTime object * IShares getPath -> getNode & setPath -> setNode * Fix unit tests
* | [Share 2.0] Move IShare to OCPRoeland Jago Douma2016-01-274-36/+35
|/
* Merge pull request #21940 from ↵Thomas Müller2016-01-271-1/+8
|\ | | | | | | | | owncloud/share2_do_not_returned_removed_group_shares [Share 2.0] Properly handle user deleted group shares
| * [Share 2.0] Properly handle user deleted group sharesRoeland Jago Douma2016-01-271-1/+8
| | | | | | | | | | | | If a user deletes a group share we create a special share entry. To the API this is just a normal group share for that user with permissions 0. But we should not return this.
* | Merge pull request #21741 from owncloud/l10n-improvementsThomas Müller2016-01-271-3/+5
|\ \ | | | | | | Move methods to the factory that are not related to translating, but to guessing/finding the language
| * | Fix testsJoas Schilling2016-01-261-3/+5
| |/
* / [Share 2.0] Add update shareRoeland Jago Douma2016-01-262-1/+68
|/
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-262-0/+6
|
* Remove OC_Helper::imagePath and use the proper public interfaceMorris Jobke2016-01-241-2/+2
|
* Move the notification API to public namespaceJoas Schilling2016-01-222-3/+3
|
* Comments from VincentRoeland Jago Douma2016-01-211-5/+3
|
* [Share 2.0] Add subfiles=xRoeland Jago Douma2016-01-211-0/+44
|
* [Sharing 2.0] Start with getSharesRoeland Jago Douma2016-01-212-1/+57
|
* Directly get from the server containerRoeland Jago Douma2016-01-203-66/+76
| | | | * Updated unit tests
* Do not use deprected activities APIRoeland Jago Douma2016-01-201-21/+33
|
* Get correct path for activity downloadsRoeland Jago Douma2016-01-201-1/+1
|
* [Share 2.0] Make public link work without viewRoeland Jago Douma2016-01-201-2/+13
|
* [Share 2.0] Make link share download use share managerRoeland Jago Douma2016-01-203-72/+79
|
* [Share 2.0] Move tests over the sharemanagerRoeland Jago Douma2016-01-203-111/+196
| | | | Nice side effect... pure unit tests!
* [Share 2.0] Move showing link share to sharing 2.0Roeland Jago Douma2016-01-203-37/+91
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-202-0/+2
|