aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* chore: adjust code to adhere to coding standardAnna Larch2024-09-0528-131/+130
| | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* Merge pull request #47770 from ↵Louis2024-09-057-53/+55
|\ | | | | | | | | nextcloud/artonge/fix/always_respond_custom_error_page_on_exceptions fix(dav): Always respond custom error page on exceptions
| * fix(dav): Always respond custom error page on exceptionsLouis Chemineau2024-09-057-53/+55
| | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* | Merge pull request #47519 from nextcloud/fix/transfer-ownership-encrypted-filesStephan Orbaugh2024-09-051-20/+43
|\ \ | | | | | | feat(transfer-ownership): Correctly react to encrypted files
| * | fix(transfer-ownership): Improve comments according to code reviewCôme Chilliet2024-09-051-3/+3
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | feat(transfer-ownership): Correctly react to encrypted filesCôme Chilliet2024-09-051-20/+43
| |/ | | | | | | | | | | | | | | For E2EE encrypted files, we abort the transfer. For SSE encrypted files, we abort only if not using master key. Also fixed the check for when the path to a single file is used. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | fix(setupchecks): Test overwrite.cli url first, then generated one, andCôme Chilliet2024-09-051-16/+30
| | | | | | | | | | | | trusted domains as last fallback. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | fix: add option to remove the webroot for setup checks and don't check ↵Daniel Kesselberg2024-09-053-13/+38
|/ | | | | | | | | | trusted_domains. 1) The checks for well-known urls should always run against the root domain and therefore the option to remove the webroot. 2) For trusted domains, the available protocol is unknown, and thus some guesswork would be needed to make that work. I've decided for now to not consider them anymore to reduce false-positives. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-05156-114/+324
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(files): undefined displayname for outdated `@nextcloud/files`<3.6.0 appsskjnldsv2024-09-041-1/+2
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* fix(files): undefined sidebarskjnldsv2024-09-041-1/+1
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* fix: Hide status tooltip in row to add a new mount pointDaniel Calviño Sánchez2024-09-041-1/+1
| | | | | | | | | The row to add a new mount point is cloned when a new mountpoint is added, so it is expected that it includes a status span. However, it should not be displayed in that row, only in the cloned row when its status is updated. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Fix unmodified placeholder replacing the actual value when updatingDaniel Calviño Sánchez2024-09-042-0/+12
| | | | | | | | | | | | | | When updating global storages and user storages a property is not updated by "StoragesService::updateStorage()" if the value matches the unmodified placeholder. However, userglobal storages are not updated through the "StoragesService"; as only the authentication mechanism is updated it is directly done with "saveBackendOptions()" in "IUserProvided" or "UserGlobalAuth". Due to this the unmodified placeholder value needs to be explicitly checked in those cases and replaced by the actual value (note that in this case it is not possible to just skip updating a specific property). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Reset selected backend when adding a new storageDaniel Calviño Sánchez2024-09-041-0/+2
| | | | | | | | As a new storage is added by selecting a backend the selected backend needs to be reset. Otherwise it is not possible to add another storage with the same backend. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Add missing translation for UI stringDaniel Calviño Sánchez2024-09-041-1/+1
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Restore default status tooltip when no status message is providedDaniel Calviño Sánchez2024-09-041-2/+3
| | | | | | | | | | If the status is updated but no explicit message is provided (for example, if the status check succeeded) the default tooltip (from the template) is now set to prevent a mismatch between the status and the tooltip (for example, if the configuration is fixed after a failed status check). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Set status tooltip to error message on failed actionsDaniel Calviño Sánchez2024-09-041-6/+9
| | | | | | | | | When saving, updating and rechecking an storage fails (which is different to the soft-fail when the action itself succeeds but the status check does not) further details are provided in the error message of the response, which is now set as the tooltip. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Set status tooltip to status message when saving an storageDaniel Calviño Sánchez2024-09-041-1/+1
| | | | | | | | | When a storage is saved the status check can fail even if saving the storage succeeds. In those cases further details are provided in the status message of the storage, which is now set as the tooltip, similarly to how it is done when rechecking the storage. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Remove status check when configuration was changedDaniel Calviño Sánchez2024-09-044-2/+8
| | | | | | | | | | | | | | | Setting a null status was supposed to remove the status check, but nothing was changed in that case. Now the status check is properly removed, and doing that by hiding the element rather than just turning it invisible also prevents that clicking on the invisible status triggers a check, as until the new configuration is saved the check will still be performed with the old configuration, which could be misleading for the user. Additionally, an explicit width is set to the parent of the span element to prevent its width from changing when the span is shown and hidden. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix: Recheck userglobal storages when loadedDaniel Calviño Sánchez2024-09-041-0/+7
| | | | | | | Userglobal storages are now automatically recheck when loaded, similarly to how it is done for global storages. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* refactor: Store result in its own variableDaniel Calviño Sánchez2024-09-041-1/+2
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #47690 from nextcloud/chore/themingJohn Molakvoæ2024-09-041-8/+8
|\
| * chore(theming): Increase app versionFerdinand Thiessen2024-09-021-8/+8
| | | | | | | | | | | | | | There were heavly breaking theming changes so increase the version number to make cache buster work. Also fix order of entries in the appinfo.xml to fix XML validation (the order is fixed in the XSD). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-04206-368/+570
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | fix(files): Fix navigating with breadcrumbs not highlighting navigation entryChristopher Ng2024-09-031-1/+4
| | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | Merge pull request #47412 from Luka-sama/feat/shares-reminderJohn Molakvoæ2024-09-037-2/+453
|\ \
| * | fix(files_sharing): Add check for nullStefan Cherniakov2024-09-031-0/+3
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | fix(files_sharing): Add missing check for null & use bool instead of int for ↵Stefan Cherniakov2024-09-033-3/+5
| | | | | | | | | | | | | | | | | | reminder_sent field Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | fix(files_sharing): Make share reminders more stable & fix issuesStefan Cherniakov2024-09-033-142/+90
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
| * | feat(files_sharing): reminder for link shares with expiration dateStefan Cherniakov2024-09-036-1/+499
| | | | | | | | | | | | Signed-off-by: Stefan Cherniakov <luka-sama@pm.me>
* | | chore: Compile assetsFerdinand Thiessen2024-09-034-4/+4
| | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | refactor(IMenuAction): Make public menu actions use the new Vue UIFerdinand Thiessen2024-09-032-10/+4
| | | | | | | | | | | | | | | | | | | | | | | | This removes custom rendering code an replaces it with the declarative menu actions. Also adjust the template to allow the Vue UI to mount. Custom entries still are possible. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | chore: Remove legacy JS code for public page menu (header actions)Ferdinand Thiessen2024-09-032-145/+0
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | fix(settings): Fix sharing exclude groups from password requirement option ↵provokateurin2024-09-033-10/+10
|/ / | | | | | | | | | | not working Signed-off-by: provokateurin <kate@provokateurin.de>
* | Merge pull request #46114 from ↵Arthur Schiwon2024-09-036-47/+219
|\ \ | | | | | | | | | | | | nextcloud/enh/improve-ldap-group-members-listing-performances fix(user_ldap): Avoid extra LDAP request when mapping a user for the first time
| * | chore: composer run cs:fixCôme Chilliet2024-08-271-2/+2
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Fix user_ldap tests by mocking new method exists in managerCôme Chilliet2024-08-271-20/+64
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Lowercase value for all attributes in configurationCôme Chilliet2024-08-271-0/+21
| | | | | | | | | | | | | | | | | | | | | Avoid surprises by making sure these are lowercased apart from documented special case user displayname. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(ldap): Fix user_ldap attribute casing to fix testsCôme Chilliet2024-08-272-4/+5
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Correctly cache that user exists to avoid a request on ↵Côme Chilliet2024-08-273-4/+1
| | | | | | | | | | | | | | | | | | mapping new user Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | fix(user_ldap): Avoid extra LDAP request when mapping a user for the first timeCôme Chilliet2024-08-273-24/+133
| | | | | | | | | | | | | | | | | | | | | | | | Avoids using several LDAP searches to get UUID, display name and internal name, now gets all attributes at the same time. Also avoids extra request to build an unused user object in userExists. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | fix(settings): Add translators noteMarcel Klehr2024-09-031-0/+1
| | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net>
* | | fix(settings): Don't display built-in task types in AI settings TextProcessingMarcel Klehr2024-09-031-6/+6
| | | | | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2024-09-0324-2/+132
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #47665 from nextcloud/fix/files-remote-sharesFerdinand Thiessen2024-09-022-10/+65
|\ \ \ | |_|/ |/| | fix(files): Correctly parse external shares for files UI
| * | fix(files): Correctly parse external shares for files UIFerdinand Thiessen2024-09-022-10/+65
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | fix(css): refine css cleanupprotoclown2024-09-022-0/+3
| | | | | | | | | | | | Signed-off-by: protoclown <ornano@felinn.org>
* | | fix(css): re-use old --color-scrollbar variableprotoclown2024-09-025-7/+2
|/ / | | | | | | Signed-off-by: protoclown <ornano@felinn.org>
* | fix(oauth2): fix testsJulien Veyssier2024-09-023-9/+9
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | fix(oauth2): store hashed secret instead of encryptedJulien Veyssier2024-09-0212-55/+118
| | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>