aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* fix(dav): Handle long absence status earlierfix/dav/absence-status-too-longChristoph Wurst2025-03-052-4/+9
| | | | | | Validate the request early. Don't let this cause a database error. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0576-250/+142
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #51229 from nextcloud/fix/lookup-serverFerdinand Thiessen2025-03-041-2/+6
|\ | | | | fix(lookup_server_connector): correctly handle account properties
| * fix(lookup_server_connector): fixed publishing of user properties to ↵fix/lookup-serverAbangTor2025-03-041-2/+6
| | | | | | | | | | | | | | | | | | lookup-server Fix of the bug in the lookup_server_connector module to publish public user information to the lookup-server. As described in issue [#25290](https://github.com/nextcloud/server/issues/25290) Signed-off-by: AbangTor <63029179+abangtor@users.noreply.github.com>
* | fix(files_sharing): ignore duplicated navigation when replacing current routeFerdinand Thiessen2025-03-041-6/+28
|/ | | | | | | | Missing piece from https://github.com/nextcloud/server/pull/50669 as we also need to adjust the files sharing router otherwiese we can get those exceptions. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Merge pull request #51218 from nextcloud/enh/add-info-to-ldap-test-user-settingsCôme Chilliet2025-03-041-2/+14
|\ | | | | feat: Add bases and gidNumber attribute to ldap:test-user-settings output
| * feat: Add bases and gidNumber attribute to ldap:test-user-settings outputenh/add-info-to-ldap-test-user-settingsCôme Chilliet2025-03-041-2/+14
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | feat: Support deleting metadata from WebDAVartonge/feat/allow_deleting_metadataLouis Chemineau2025-03-041-0/+6
|/ | | | | | The `$value` will be `null` if the update is wrapped inside a `<d:remove>...</d:remove>` block. Signed-off-by: Louis Chemineau <louis@chmn.me>
* Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0462-44/+454
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #51146 from nextcloud/fix/files-trash-downloadKate2025-03-031-2/+8
|\ | | | | fix(files_trashbin): disable bulk download for trashbin
| * fix(files_trashbin): disable bulk download for trashbinFerdinand Thiessen2025-02-281-2/+8
| | | | | | | | | | | | | | The backend does not allow bulk download within the trashbin, so we need to disable this also on the frontend. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #51000 from nextcloud/fix/federatedfilesharing/group-cleanupStephan Orbaugh2025-03-031-14/+44
|\ \ | | | | | | fix(FederatedShareProvider): Delete external shares when groups are deleted or users removed from a group
| * | fix(FederatedShareProvider): Delete external shares when groups are deleted ↵fix/federatedfilesharing/group-cleanupprovokateurin2025-03-031-14/+44
| | | | | | | | | | | | | | | | | | or users removed from a group Signed-off-by: provokateurin <kate@provokateurin.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0340-214/+348
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix(systemtags): support new attribute parsing of webdav propsFerdinand Thiessen2025-03-023-10/+110
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0238-72/+134
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-012-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2025-03-0182-108/+308
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #51092 from nextcloud/enh/49868/add-display-overrideKate2025-02-283-2/+11
|\ \ \
| * | | feat(PWA): add `display_override` to set the display-mode to `minimal-ui` on ↵enh/49868/add-display-overrideSimon L.2025-02-283-2/+11
| | |/ | |/| | | | | | | | | | | | | supported browsers Signed-off-by: Simon L. <szaimen@e.mail.de>
* | | fix(eslint): Strings must use singlequoteJohn Molakvoæ2025-02-281-1/+1
| | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
* | | fix(l10n): use `do not` instead of `don't`Valdnet2025-02-284-4/+4
|/ / | | | | | | Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
* | refactor: use eventbus for updated filtersFerdinand Thiessen2025-02-283-15/+7
| | | | | | | | | | | | | | prevent filters not applied if `filtersChanged` was set before file list mounted. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | fix(files): Ensure the filter instance is mountedFerdinand Thiessen2025-02-282-2/+7
| | | | | | | | | | | | | | | | `reset` could be called before the filters are mounted, in this case it is valid to update the presets, but we must not try to access the vue instance (as it does not exist yet). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #50881 from nextcloud/fix/dav-harden-stream-handlingJohn Molakvoæ2025-02-281-16/+11
|\ \ | | | | | | fix(dav): Handle end of stream in `File::put`
| * | fix(dav): Handle end of stream in `File::put`fix/dav-harden-stream-handlingFerdinand Thiessen2025-02-181-16/+11
| | | | | | | | | | | | | | | | | | | | | | | | If the stream is aborted and the callback wrapper returns false (or null as it happened in some cases), we should not try to write to the storage but abort the operation. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | Merge pull request #50452 from nextcloud/chore/update-stubJoas Schilling2025-02-281-2/+2
|\ \ \ | | | | | | | | chore: update php intl stub and fix type issues
| * | | fix: incorrect types detected by updated stubschore/update-stubFerdinand Thiessen2025-02-271-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-28378-738/+746
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #51079 from nextcloud/fix/do-not-remindPytal2025-02-271-2/+3
|\ \ \ \ | |/ / / |/| | | fix(files_reminders): Do not attempt to send reminders after a user has left a share
| * | | fix(files_reminders): Do not attempt to send reminders after a user has left ↵fix/do-not-remindChristopher Ng2025-02-261-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | a share Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | | Merge pull request #50999 from nextcloud/fix/move-away-from-oc-appCôme Chilliet2025-02-273-5/+8
|\ \ \ \ | | | | | | | | | | fix: Replace OC_App calls by IAppManager
| * | | | fix(tests): Adapt tests to appManager usageCôme Chilliet2025-02-241-0/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | | fix: Replace OC_App calls by IAppManagerCôme Chilliet2025-02-242-5/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | Merge pull request #47513 from nextcloud/bug/noid/weird-ldap-cachingKate2025-02-272-17/+1
|\ \ \ \ \
| * | | | | fix: remove caching in fetchListOfGroupsDaniel Kesselberg2025-02-272-17/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using nested groups without a memberof overlay, then fetchListOfGroups is called from getGroupsByMember without applying the group filter. In some setups, the "unfiltered" result is then written back to the group mapping table. That might cause random "An administrator removed you from group" activities. I was unable to replicate it locally, but we got the feedback that the random activities stopped with the patch applied. Ref: https://github.com/nextcloud/server/issues/42195 Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | | Merge pull request #51019 from nextcloud/fix/files_external/definition-parameterKate2025-02-273-4/+8
|\ \ \ \ \ \
| * | | | | | fix(files_external): Move definition parameter to the correct placefix/files_external/definition-parameterprovokateurin2025-02-253-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* | | | | | | Merge pull request #50990 from AIlkiv/refactor/version-rollback-to-eventStephan Orbaugh2025-02-277-12/+158
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | refactor: move version rollback hook to event
| * | | | | | | refactor: move version rollback hook to eventailkiv2025-02-257-12/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: ailkiv <a.ilkiv.ye@gmail.com>
* | | | | | | | Merge pull request #51077 from nextcloud/pulsejet-patch-share-attrJohn Molakvoæ2025-02-271-1/+1
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | |
| * | | | | | | fix(files): exception when share-attributes is undefinedVarun Patil2025-02-271-1/+1
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Varun Patil <varunpatil@ucla.edu> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | Merge pull request #51069 from small1/fixsetupchecksrowformatJoas Schilling2025-02-271-3/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix SQL query so that it is ansi safe fixing #51067
| * | | | | | | fix: Change SQL query so that it is ansi safeJohan Bernhardsson2025-02-271-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Johan Bernhardsson <johan.bernhardsson@redpill-linpro.com>
* | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-272050-24244/+24400
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | fix(translation): Fix string concatenation in LDAP endpointbugfix/noid/improve-english-sourcesJoas Schilling2025-02-261-2/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | fix(l10n): Improve english source stringsJoas Schilling2025-02-268-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - No leading/trailing whitespace - Use asci single quote Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2025-02-26240-1124/+1044
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | chore: style fix for named parameterCôme Chilliet2025-02-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Arthur Schiwon <blizzz@arthur-schiwon.de> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
* | | | | | fix(user_ldap): Check that all user and group bases are in the global oneCôme Chilliet2025-02-252-16/+41
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>