Commit Graph

25818 Commits (stable22)

Author SHA1 Message Date
Joas Schilling 3f44d4a2a9
fix(external): Get storage before update it
Signed-off-by: Joas Schilling <coding@schilljs.com>
7 months ago
Anna Larch 99c9ef3a42 fix(CalDAV): check birthday calendar owner
Signed-off-by: Anna Larch <anna@nextcloud.com>
9 months ago
Maxence Lange d43727a429 getStorage before remove
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
10 months ago
Julien Veyssier ae83c0ba8c
add bruteforce protection in OauthApiController
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
10 months ago
Joas Schilling da708a589d
fix(dav): Abort requests with 429 instead of waiting
Signed-off-by: Joas Schilling <coding@schilljs.com>
10 months ago
Côme Chilliet f5b2945b9f Adapt encryption test to change in generateHeader
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
11 months ago
Côme Chilliet dda2bec0bc Increase from 100000 to 600000 iterations for hash_pbkdf2
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
11 months ago
Arthur Schiwon 86bd13b2c8
Merge pull request #38464 from nextcloud/fix/read-only-system-addres-book-acls-stable22
[stable22] fix(carddav): Mark system address book as read-only
12 months ago
Robin Appelman 9d81b0b874
check the username when doing external storage session auth
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 year ago
Christoph Wurst 1fb687dbe1
fix(carddav): Mark system address book as read-only
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
1 year ago
Joas Schilling 977405cba8
fix(workflow): Check tag attribute
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
Joas Schilling 3071c13fb8
Also check the scope when reading operations from the database
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
Joas Schilling 53015cb392
Validate the scope when validating operations
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
Joas Schilling 5747c37d46
Fix EmailProviderTest mocking unexisting method
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
Joas Schilling 2b57b173fe
fix(CI): Fix unmockable countUsers() method
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
Joas Schilling 900953915e
Fix admin_audit unit test
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 year ago
John Molakvoæ 61a62bdfbf Fix createNamedParameter in LDAP migrations
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
1 year ago
blizzz 0505df3796
Merge pull request #35755 from nextcloud/backport/31683/stable22
[stable22] limit ldap_dn columns to 4000
1 year ago
Robin Appelman 4fced6d548
Merge pull request #35826 from nextcloud/backport/35107/stable22
[stable22] add migration for encryption keys in wrong location
1 year ago
Robin Appelman ce73967028
fix php7.3 compat
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 year ago
Côme Chilliet b19b0c8954
Remove property type for PHP 7.3 support
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
Côme Chilliet afc823d844
Build autoloaders
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
Côme Chilliet 7fdadce1ec
Use the new octetLength function to filter lines to migrate
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
Côme Chilliet 0303021ed5
Adapt max length limit in AbstactMapping to match database
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
Arthur Schiwon 569eeece72
shrink ldap_dn column to 4000
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
1 year ago
Arthur Schiwon 7a944f748a
limit ldap_dn columns to 4000
- enlarging string cols from 255 to more than 4000 fails on default
  Oracle installations for invalid datatype conversion

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
1 year ago
Robin Appelman af4f846790
add migration for encryption keys in wrong location
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 year ago
Côme Chilliet 8e73f29480 Add octetLength and charLength to function builder, and tests
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
Côme Chilliet 884ea3e870 Use getLengthExpression to measure field length instead of like
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 year ago
blizzz 597d69bcc5
Merge pull request #35439 from nextcloud/backport/35062/stable22
[stable22] Fix sidebar not automatically hidden in Files app
1 year ago
Louis 3d15c24dfa Revert "Revert "[stable22] Fix mentions rendering in comment editor""
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 year ago
Louis 67174d845a
Revert "[stable22] Fix mentions rendering in comment editor" 1 year ago
Louis Chemineau 496b9a3a2b Fix mentions rendering in comment editor
NcRichContentEditable needs an index of users to properly display them. This commit adds a caching logic and provides it to NcRichContentEditable.

Signed-off-by: Louis Chemineau <louis@chmn.me>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 year ago
Daniel Calviño Sánchez 1fb4237fd2 Fix sidebar not automatically hidden in Files app
Although the Files app creates the legacy sidebar (details view) it is
then replaced with the newer Vue app sidebar. Due to this ".detailsView"
no longer finds an element and therefore nothing was hidden when
"hideAppSidebar($('.detailsView'))" was called (for example, when
changing to another section).

However, "OC.Apps.hideAppSidebar()" does not properly work either with
the Vue sidebar used in the Files app (once hidden the sidebar is not
shown again). For simplicity, and to avoid any possible side effect in
other apps from changing "OC.Apps.hideAppSidebar", now
"OC.Files.Sidebar.close()" is used instead.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2 years ago
Richard Steinmetz c10b2fb220
Fix duplicate event email notifications
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2 years ago
Nextcloud bot 35905126aa
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot d85f6409bc
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot bc048b8759
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 3d05336228
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 72af466c6d
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot c3898df0e1
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot b9a1e14eb2
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 9253e4a823
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 6726447f16
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot f918c73ac0
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 8b93127ed0
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 786615600b
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot b9e5816e0a
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 666b641b63
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago
Nextcloud bot 8a61b308b3
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago