aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
...
| * | sharing-entry__reshare needs ul or ol around itSimon L2024-01-111-7/+9
| | | | | | | | | | | | Signed-off-by: Simon L <szaimen@e.mail.de>
| * | fix(files): group duplicate sharesJohn Molakvoæ2024-01-112-1/+44
| | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
| * | Merge pull request #42666 from nextcloud/chore/deps/update-openapi-extractorJoas Schilling2024-01-101-3/+15
| |\ \ | | | | | | | | chore(deps): Update openapi-extractor
| | * | chore(deps): Update openapi-extractorprovokateurin2024-01-091-3/+15
| | |/ | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
| * / Fix(l10n): Update translations from TransifexNextcloud bot2024-01-104-2/+14
| |/ | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * fix: public dav and files_sharing testing fixesJohn Molakvoæ2024-01-098-29/+26
| | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
| * feat: public dav endpoint v2John Molakvoæ2024-01-091-1/+6
| | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2024-01-052-0/+12
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2024-01-044-2/+630
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2024-01-012-6/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-312-0/+14
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-242-0/+12
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-234-2/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-186-6/+34
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-174-6/+18
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-166-0/+26
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-1518-0/+100
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-1472-112/+168
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * fix(files_sharing): Add one string for every share type to not assume any ↵Ferdinand Thiessen2023-12-131-17/+17
| | | | | | | | | | | | language Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * Merge pull request #42126 from nextcloud/click-outside-should-abort-shareFerdinand Thiessen2023-12-122-4/+3
| |\ | | | | | | Tooltip outside click, should abort share creation
| | * Allow user to finish typing date before formattingfenn-cs2023-12-111-3/+2
| | | | | | | | | | | | | | | | | | | | | Debounce `onExpirationChange` to avoid calling `formatDateToString` on invalid on uncompletely inputed date strings. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| | * Tooltip outside click, should abort share creationfenn-cs2023-12-111-1/+1
| | | | | | | | | | | | | | | | | | | | | It's unexpected that click outside a tooltip would proceed with the action that could be carried out inside the tooltip. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2023-12-122-0/+8
| |/ | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-112-4/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Merge pull request #42115 from nextcloud/chore/deps/update-openapi-extractorJoas Schilling2023-12-081-6/+38
| |\ | | | | | | chore(deps): Update openapi-extractor
| | * chore(deps): Update openapi-extractorjld31032023-12-081-6/+38
| | | | | | | | | | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
| * | Replace input filed with password field and added password error messagejulia.kirschenheuter2023-12-081-5/+11
| |/ | | | | | | | | | | Remove unneeded NcDateTimePicker Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
| * Remove `newPassword` from share model, if disabledfenn-cs2023-12-061-3/+7
| | | | | | | | | | | | | | | | | | | | It's important to delete the `newPassword` prop from the share model, if the user unchecks the isPasswordProtected checkbox. This clearer and allows for the unchecking to actually work as `this.$set()` fails with the falsy value `''`. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * Create element reference inside $nextTick()fenn-cs2023-12-061-7/+6
| | | | | | | | | | | | | | | | Accessing `this.$refs.shareList` outside $nextTick() could lead to the holder (`listComponent`) being undefined as the ref is yet to exist. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-062-8/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * fix(files_sharing): fix sharing status indicator side after component updateJohn Molakvoæ2023-12-051-1/+3
| | | | | | | | | | | | Seems like the components now have max-height/width set too Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-052-14/+14
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-032-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-12-0192-92/+186
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Improve share logic for enforced password & expiry datefenn-cs2023-11-303-36/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * It's possible for the admin to enforce and expiry date after, some shares have been created. This commit makes possible to update the share with the new admin constraints. * This commit would users to modify enforced expiry to anything within range and less than the enforced limit in the pre-create dialog for public shares. * This commit fixes, unable to update share without updating password. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-3092-184/+92
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-284-86/+416
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-274-8/+240
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-262-0/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-252-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-2490-278/+136
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Merge pull request #41680 from nextcloud/Jerome-Herbinet-change-update-wordingAndy Scherzinger2023-11-231-2/+2
| |\ | | | | | | Replace "Update" with "Edit" in advanced share settings
| | * Replace "Update" with "Edit"Jérôme Herbinet2023-11-231-2/+2
| | | | | | | | | Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
| * | Merge pull request #41678 from nextcloud/branchoff/master-is-now-29Arthur Schiwon2023-11-231-2/+2
| |\ \ | | | | | | | | Master is now 29
| | * | feat(branchoff): Bump versions and requirements in appsJoas Schilling2023-11-231-2/+2
| | |/ | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * / chore: apply changes from Nextcloud coding standards 1.1.1Joas Schilling2023-11-2341-130/+120
| |/ | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
| * Merge pull request #41623 from nextcloud/fix/orphan-share-no-userJulius Härtl2023-11-211-1/+6
| |\
| | * fix: Also cleanup orphaned shares user cannot be found anymoreJulius Härtl2023-11-201-1/+6
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | Fix(l10n): Update translations from TransifexNextcloud bot2023-11-212-4/+4
| |/ | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
| * Fix(l10n): Update translations from TransifexNextcloud bot2023-11-202-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>