aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
...
| * fix: No password set for new mail sharesfenn-cs2024-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before the password is set on a new share, the computed property `hasUnsavedPassword` is used to check that `this.share.newPassword` is not undefined. Direct assignment without using Vue's `this.$set` makes it impossible for vue to detect that changes have happened on the share object. Hence the inreactivity. This worked initially most likely because `this.share.newPassword = await GeneratePassword()` was executed before the computed properties where evaluated. Resolves : https://github.com/nextcloud/server/issues/43919 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* | chore: improve typing for SharedStorage::$storageRobin Appelman2024-03-141-0/+9
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | fix: don't return null for SharedStorage::getWrapperStorage with share recursionRobin Appelman2024-03-141-0/+10
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-144-0/+4
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-03-132-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #39990 from nextcloud/recursive-shareArthur Schiwon2024-03-111-1/+15
|\ | | | | add some recrusive detection/prevention
| * fix: add some recrusive detection/preventionRobin Appelman2024-03-081-1/+15
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-102-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-094-0/+8
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-03-0898-242/+528
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* feat: Allow registration of advanced external share actionsChristopher Ng2024-03-063-3/+43
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* feat: reconfigured NcActions to use MDI'sEduardo Morales2024-03-062-24/+66
| | | | Signed-off-by: Eduardo Morales <emoral435@gmail.com>
* chore: manual lintingEduardo Morales2024-03-061-5/+11
| | | | Signed-off-by: Eduardo Morales <emoral435@gmail.com>
* feat: added new action for qrcode popup linkshareEduardo Morales2024-03-061-1/+44
| | | | Signed-off-by: Eduardo Morales <emoral435@gmail.com>
* Merge pull request #44000 from nextcloud/more-sharing-cleaupRobin Appelman2024-03-061-59/+0
|\ | | | | cleanup: remove long depricated share code
| * chore: remove long depricated share codeRobin Appelman2024-03-061-59/+0
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #44029 from nextcloud/share-manager-buildRobin Appelman2024-03-061-2/+0
|\ \ | |/ |/| refactor: make share manager buildable
| * refactor: make share manager buildableRobin Appelman2024-03-061-2/+0
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | feat: Rename circles to teamsJulius Härtl2024-03-061-2/+2
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* fix(sharing): Avoid (dead)locking during orphan deletionChristoph Wurst2024-03-052-14/+67
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #43471 from nextcloud/cache-path-by-idRobin Appelman2024-03-0510-107/+128
|\ | | | | Cache path by id
| * perf: switch places that always use the first getById result to getFirstNodeByIdRobin Appelman2024-03-0410-107/+128
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-03-054-0/+34
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #43791 from nextcloud/share-api-cleanupRobin Appelman2024-03-041-4/+4
|\ \ | |/ |/| Share api cleanup
| * fix: remove old test-only methodsRobin Appelman2024-02-261-4/+4
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-292-0/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-2896-824/+838
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | test: Add test selector on sharing and versions componentsLouis Chemineau2024-02-272-8/+28
| | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* | chore(files_sharing): Remove legacy share permissions editorLouis Chemineau2024-02-271-290/+0
| | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-272-0/+14
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #43428 from nextcloud/feat/share-expiration-with-timeBenjamin Gaussorgues2024-02-264-10/+21
|\
| * feat(share): save date and time for expirationBenjamin Gaussorgues2024-02-224-10/+21
| | | | | | | | | | | | | | | | Because of timezones, not saving time can lead to unexpected behaviour when sharing an item sooner than timezone offset Example: sharing a file before 9am when in UTC+9 Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-254-2/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge branch 'master' into share-external-watcherJohn Molakvoæ2024-02-242-2/+2
|\ \
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-242-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge branch 'master' into share-external-watcherJohn Molakvoæ2024-02-23187-3594/+6511
|\| | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
| * | Merge pull request #43605 from nextcloud/orphan-share-dailyJohn Molakvoæ2024-02-231-6/+2
| |\ \
| | * | fix: only cleanup orphaned shared dalyRobin Appelman2024-02-151-6/+2
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix truncated circleId returned from Share APIAragon Gouveia2024-02-231-3/+4
| | | |
| * | | chore(files_sharing): use `OCSResponse` from `@nextcloud/typings`skjnldsv2024-02-233-14/+5
| | |/ | |/| | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-222-2/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-212-4/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * | Fix undefined share object during expirationDate updatefenn-cs2024-02-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In 04e87337211351127cd02a0404936de8cb1b0837 a regression was introduced. `this` means nothing inside arrow functions, hence this.share was referring to an undefined object and so all attempted updates for expiration dates would fail. Resolves : https://github.com/nextcloud/server/issues/43256 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-202-0/+18
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-194-2/+16
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-186-2/+32
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2024-02-166-22/+62
| |/ | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2024-02-1510-8/+76
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Merge pull request #43461 from nextcloud/fix/get-rid-of-getloggerF. E Noel Nfebe2024-02-144-11/+20
| |\ | | | | | | chore: Migrate away from OC::$server->getLogger
| | * chore: Migrate away from OC::$server->getLoggerCôme Chilliet2024-02-134-11/+20
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>