summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2021-03-23226-410/+462
|
* Fix parameter types in docsJoas Schilling2021-03-222-7/+7
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* l10n: Add changes to text string for userValdnet2021-03-221-1/+1
|
* l10n: Add word user in ShareByMailProvider.phpValdnet2021-03-221-1/+1
| | | Standardizing text strings with other Nextcloud applications.
* [tx-robot] updated from transifexNextcloud bot2021-03-2230-120/+274
|
* Merge pull request #26227 from nextcloud/backport/26213/stable21Morris Jobke2021-03-211-5/+0
|\ | | | | [stable21] Removed unnecessary padding
| * Removed unnecessary paddingSascha Wiswedel2021-03-201-5/+0
| | | | | | Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2021-03-218-10/+10
|/
* Merge pull request #26215 from nextcloud/backport/26145/stable21Roeland Jago Douma2021-03-201-1/+9
|\ | | | | [stable21] add (hidden) option to always show smb root as writable
| * add (hidden) option to always show smb root as writableRobin Appelman2021-03-191-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | some smb servers are very insistent in reporting that the root of the share is readonly, even if it isn't. This works around the problem by adding a hidden option to overwrite the permissions of the root of the share. This can be enabled using ```bash occ files_external:config <mount id> root_force_writable true ``` where you can find your mount id using ```bash occ files_external:list ``` Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2021-03-2018-78/+84
|/
* [tx-robot] updated from transifexNextcloud bot2021-03-196-4/+52
|
* Fix valid storages removed when cleaning remote storagesDaniel Calviño Sánchez2021-03-182-4/+39
| | | | | | | | | | | | | | | | | | The remote URL of a share is always stored in the database with a trailing slash. However, when a cloud ID is generated trailing slashes are removed. The ID of a remote storage is generated from the cloud ID, but the "cleanup-remote-storage" command directly used the remote URL stored in the database. Due to this, even if the remote storage was valid, its ID did not match the ID of the remote share generated by the command and ended being removed. Now the command generates the ID of remote shares using the cloud ID instead, just like done by the remote storage, so there is no longer a mismatch. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #26087 from nextcloud/backport/26049/stable21Vincent Petry2021-03-181-2/+3
|\ | | | | [stable21] limit constructing of result objects in file search
| * limit constructing of result objects in file searchRobin Appelman2021-03-121-2/+3
| | | | | | | | | | | | | | | | even thought we currently have no proper way of limiting the search itself, we can at least limit the construction of the result objects. this saves about 40% of the time spend in the search request in my local testing Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2021-03-186-8/+12
| |
* | Merge pull request #26062 from nextcloud/backport/25915/stable21Morris Jobke2021-03-175-4/+16
|\ \ | | | | | | [stable21] Add appconfig to always show the unique label of a sharee
| * | Add appconfig to always show the unique label of a shareeJulius Härtl2021-03-115-4/+16
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | adds ldap user:reset commandArthur Schiwon2021-03-175-3/+132
| | | | | | | | | | | | | | | | | | | | | | | | - allows to delete data of existing LDAP users, which otherwise is safe guarded - ensures that the user is not being deleted on LDAP through a plugin Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Merge pull request #25943 from nextcloud/backport/25659/stable21Morris Jobke2021-03-173-3/+9
|\ \ \ | | | | | | | | [stable21] catch notfound and forbidden exception in smb::getmetadata
| * | | catch notfound and forbidden exception in smb::getmetadataRobin Appelman2021-03-053-3/+9
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #26166 from nextcloud/backport/26131/stable21Morris Jobke2021-03-171-1/+1
|\ \ \ \ | | | | | | | | | | [stable21] Fix default missing initial state for templates
| * | | | Fix default missing initial state for templatesJohn Molakvoæ (skjnldsv)2021-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | Use correct exception type hint in catch statementMorris Jobke2021-03-171-2/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | Found by psalm update 4.6.2 to 4.6.3 in #26111 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-174-4/+44
| | | |
* | | | Merge pull request #26133 from nextcloud/backport/25136/stable21Morris Jobke2021-03-162-0/+40
|\ \ \ \ | | | | | | | | | | [stable21] do cachejail search filtering in sql
| * | | | fix search in nested jailsRobin Appelman2021-03-152-0/+40
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #26128 from nextcloud/backport/26115/stable21Christoph Wurst2021-03-161-0/+2
|\ \ \ \ \ | | | | | | | | | | | | [stable21] Log exceptions when creating share
| * | | | | Log exceptions when creating shareVincent Petry2021-03-151-0/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because the exceptions don't always contain a useful message for the UI, but also because in some cases we need to find out what went wrong. In some setups, a ShareNotFoundException might happen during creation when we try to re-read the just written share. Usually related to Galera Cluster where node syncing wait is not enabled. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* / / / / [tx-robot] updated from transifexNextcloud bot2021-03-162-0/+12
|/ / / /
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-1518-38/+46
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-1410-0/+34
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2021-03-1320-46/+142
| |_|/ |/| |
* | | Only clear known users when we had at least one phonebook entryJoas Schilling2021-03-121-3/+3
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2021-03-1266-162/+186
| |/ |/|
* | Only clear share password model when actually savedVincent Petry2021-03-113-4/+7
| | | | | | | | | | | | | | | | | | | | | | Instead of always clearing the password in the share model, now only do it when it was actually saved. Fixes an issue where saving another field would clear the password too early and prevent it to be saved when the dropdown closed. Signed-off-by: Vincent Petry <vincent@nextcloud.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | Merge pull request #26039 from nextcloud/backport/25916/stable21Vincent Petry2021-03-111-0/+3
|\ \ | | | | | | [stable21] Remove trash items from other trash backends when deleting all
| * | Remove trash items from other trash backends when deleting allJulius Härtl2021-03-101-0/+3
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Rename some parameters and methods to make the API more clearJoas Schilling2021-03-113-3/+3
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Also clear the knownUser when changing via the settings endpointJoas Schilling2021-03-112-1/+29
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Fix CS hopefullyJoas Schilling2021-03-111-4/+4
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add a setting to restrict returning a full match unless in phonebook or same ↵Joas Schilling2021-03-115-14/+89
| | | | | | | | | | | | | | | | | | group Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add a hint that the settings are OR basedJoas Schilling2021-03-112-0/+6
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Restrict autocompletion also based on the phonebook known usersJoas Schilling2021-03-1110-36/+79
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add a config setting to restrict autocompletion to phonebook matchesJoas Schilling2021-03-114-178/+57
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add a service to find out if a user knows another userJoas Schilling2021-03-113-30/+44
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Delete matches when the user is being deletedJoas Schilling2021-03-114-0/+60
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Delete matches when a user changes their phone numberJoas Schilling2021-03-111-0/+4
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Store when a user knows another user based on phone numberJoas Schilling2021-03-111-0/+22
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add a KnownUsers database with modelJoas Schilling2021-03-1125-50/+100
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>