| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Use property name for addType
|
| |
| |
| |
| | |
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
|
|\ \
| | |
| | | |
Minor optimizations for saving user personal information
|
| | |
| | |
| | |
| | | |
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Remove double hook: the OC_User::changeUser triggers an
OC\AccountManager::userUpdated and the app is already listening to this
signal in its Application definition
* Make createCard not check if an card exists if we already checked
previously. We also don't try to get the card if the user is disabled
as we don't use the card in this case
We this change we go from 100 DB requests to 80 DB requests when saving
an user email address.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
(cherry picked from commit c6fd482edf33214a9ad4787e4cac278f871fa7c8)
|
|\ \ |
|
| | |
| | |
| | |
| | | |
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
| |/
|/|
| |
| | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \
| | |
| | | |
Cleanup lock related code
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Port to QueryBuilder
- Improve the doc a bit
- Add type hinting
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
|\ \ \
| | | |
| | | | |
Fix buttons in workflow
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Vanessa Pertsch <vanessa.pertsch@nextcloud.com>
|
| | |/
| |/|
| | |
| | | |
Signed-off-by: Vanessa Pertsch <vanessa.pertsch@nextcloud.com>
|
|/ /
| |
| | |
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
|
|\ \ |
|
| | |
| | |
| | |
| | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \ |
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: Vanessa Pertsch <vanessa.pertsch@nextcloud.com>
|
|\ \ \
| |/ /
|/| | |
Add a public replacement for OC::$server->get
|
| | |
| | |
| | |
| | | |
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \
| | | |
| | | | |
Do not dispatch postSetPassword when setPassword fails
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Also Improve error message when setPassword fails
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
|\ \ \
| | | |
| | | | |
Don't use hash to check if binding worked
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Using password_hash is expensive and should be used for hashing
passwords when saving them in the database. Here we just want to see if
the bind was already done with the given password, so use a fast hashing
algorythm.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
|
|\ \ \ \
| | | | |
| | | | | |
Save encrypted files in binary format
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Default to the more space-efficient binary encoding for newly encrypted files
instead of the traditional base64 encoding, eliminating the 33% overhead.
The new option 'encryption.use_legacy_encoding' allows to force the legacy
encoding format if needed. Files encoded in the old format remain readable.
Based on https://github.com/owncloud/encryption/pull/224 and
https://github.com/owncloud/core/pull/38249 by karakayasemi.
Signed-off-by: plumbeo <plumbeo@users.noreply.github.com>
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Add setting to ignore email during search
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove leading "minus"
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
apply to PsrLoggerAdapter
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Use share setting in DAV search
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
shareapi_restrict_user_enumeration_full_match_ignore_second_display_name was introduced to ignore second display name during search from the share panel. But this setting was not respected by search from the calendar application. This fix it.
Signed-off-by: Louis Chemineau <louis@chmn.me>
|
| |/ / / /
|/| | | |
| | | | |
| | | | | |
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Improve theming layout
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Migrate dav application from ILogger to LoggerInterface
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
|