Maxence Lange
4591430c9c
feat(ocm): signing ocm requests
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
12 months ago
Nextcloud bot
967e1a894a
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Maxence Lange
b791cc987e
fix(NCU): removing all @since
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
11 months ago
Robin Appelman
ae30269eac
fix: don't set 'name' on null metadata
Signed-off-by: Robin Appelman <robin@icewind.nl>
12 months ago
Daniel Kesselberg
f2d0f79710
chore: mark enums in value type as experimental
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
11 months ago
Nextcloud bot
e17f011f08
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Daniel Kesselberg
4fba2aec35
chore: mark userconfig as experimental
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
11 months ago
Joas Schilling
1909b981a4
fix(controller): Fix false booleans in multipart/form-data
Signed-off-by: Joas Schilling <coding@schilljs.com>
11 months ago
Louis Chemineau
a2f2f7ce93
feat: Use inline password confirmation in external storage settings
Signed-off-by: Louis Chemineau <louis@chmn.me>
11 months ago
Christoph Wurst
1323e5bcb1
fix(migration): Decrypt ownCloud secrets v2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
11 months ago
Nextcloud bot
659cd12a8a
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Joas Schilling
d1e17e78b7
fix(activity): Fix activity object type warnings
Signed-off-by: Joas Schilling <coding@schilljs.com>
11 months ago
Robin Appelman
b2c01785ae
fix: fix availability wrapper not applying
Signed-off-by: Robin Appelman <robin@icewind.nl>
11 months ago
Robin Appelman
df3a9e221d
fix: throw correct exception type when we can't verify if an s3 bucket exists
Signed-off-by: Robin Appelman <robin@icewind.nl>
11 months ago
Git'Fellow
373c7e8c53
refactor(filecache): Move to more strict typing
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
12 months ago
provokateurin
cc8e69c303
fix(OCMDiscoveryService): Also cache error results during discovery
Signed-off-by: provokateurin <kate@provokateurin.de>
12 months ago
provokateurin
715e7143f0
fix(files_sharing,files): Do not validate shares before adjusting the owner
Signed-off-by: provokateurin <kate@provokateurin.de>
12 months ago
provokateurin
c2ca99e2f6
fix(Share20\Manager): Ensure node is still accessible when checking share
Signed-off-by: provokateurin <kate@provokateurin.de>
12 months ago
provokateurin
c378e74017
feat(Share20\Manager): Return all shares on IShareOwnerlessMount
Signed-off-by: provokateurin <kate@provokateurin.de>
1 year ago
provokateurin
a978e0a806
fix(Share20\DefaultShareProvider): Return link shares in getSharesByPath()
Signed-off-by: provokateurin <kate@provokateurin.de>
1 year ago
provokateurin
762b09049b
fix(Share20\DefaultShareProvider): Sort getSharesByPath() results
Signed-off-by: provokateurin <kate@provokateurin.de>
11 months ago
provokateurin
ea93dc0c7d
feat(Files\Mount): Add IShareOwnerlessMount
Signed-off-by: provokateurin <kate@provokateurin.de>
1 year ago
Nextcloud bot
1005efdfd3
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Nextcloud bot
2a8b7400ed
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Louis Chemineau
f9cda54cbf
fix: Wrap partial cache entry in CacheEntry
Because it is returned here: 7b7d07c575/lib/private/Files/Cache/Cache.php (L136-L137)
And some implementation got stricter: df95bf6ba8/lib/Mount/RootEntryCache.php (L23-L28)
Signed-off-by: Louis Chemineau <louis@chmn.me>
11 months ago
Git'Fellow
33d7019f58
fix(status): Avoid session creation for status requests
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
11 months ago
skjnldsv
4db5f708b6
fix(cache): etag constraint violation
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
11 months ago
Git'Fellow
60d956f39f
refactor(storage): Code adjustements and simplifications
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
11 months ago
Nextcloud bot
5b201827b5
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Git'Fellow
8755bf1815
fix(storage): Try to delete existing target
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Add same logic to common storage
12 months ago
Nextcloud bot
d334773b98
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
11 months ago
Joas Schilling
394febb5d9
fix(userconfig): Don't fail the precondition if the value is not set at all
Signed-off-by: Joas Schilling <coding@schilljs.com>
11 months ago
Thomas Lehmann
e4c013d86d
feat(Mailer): add "null" SMTP transport mode
== Goal
Allow disabling mail delivery altogether.
== Usecase
If mails ought to be send by other means than rendering messages from
templates and sending them via SMTP-like protocols.
Example: listening to specific Nextcloud events and pass parameters to
a centralized (i.e. REST-based) API that sends e-mails.
Signed-off-by: Thomas Lehmann <t.lehmann@strato.de>
1 year ago
Thomas Lehmann
40211f3d07
chore(Mailer): remove no-op local variable initilization
The IDE hinted the value is immediately overwritten.
Signed-off-by: Thomas Lehmann <t.lehmann@strato.de>
12 months ago
Thomas Lehmann
46d8a7333b
feat(Mailer): implement caching
Currently $this->instance is never set, so the code is no-op. This
brings back caching of the instance.
Caching broke with
be7db1573d
Swift to \Swift_Mailer as abstraction
Signed-off-by: Thomas Lehmann <t.lehmann@strato.de>
12 months ago
Maxence Lange
5b4f1904c0
feat(user-prefs): renaming to IUserConfig
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
12 months ago
Maxence Lange
6afc8552b7
feat(user-prefs): switching to NCU/
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
12 months ago
Maxence Lange
7c04818c5c
feat(user-prefs): iterator instead of array on search
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 year ago
Maxence Lange
e73513bdd1
fix(user-prefs): adding sensitive and indexed as flags
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 year ago
Maxence Lange
65e24f7def
feat(user-prefs): IUserPreferences
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 year ago
Ferdinand Thiessen
9e327a5890
fix(apps-store): Remove apps from force-enabled state when uninstalled
If an app is force-enabled and then uninstalled the force-enabled state was kept.
This is now removed, so when the app should be re-installed the compatibility should be reevaluated.
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 year ago
Joas Schilling
e8c921461f
fix(richtextvalidator): Add missing blurhash
Signed-off-by: Joas Schilling <coding@schilljs.com>
12 months ago
Nextcloud bot
4d138a11f9
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
12 months ago
provokateurin
dd0ed02b91
feat(Dispatcher): Add debug log for controller methods returning raw data not wrapped in Response
Signed-off-by: provokateurin <kate@provokateurin.de>
12 months ago
skjnldsv
54be2ef0f3
fix(profile): add legacy root for old `core.ProfilePage.index`
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
12 months ago
skjnldsv
b15fdfd40e
chore(profile): move profile app from core to apps
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
12 months ago
Julien Veyssier
a52a63fc74
fix(textprocessing): accept scheduling a task if there are equivalent taskprocessing providers only
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
12 months ago
Misha M.-Kupriyanov
8e570041a5
feat(search): reduce search providers via core app config unified_search.providers_allowed
reduce search providers by setting core config value to unified_search.providers_allowed = [ 'files', 'setting' ]
./occ config:app:set --value '["files","settings"]' --type array core unified_search.providers_allowed
Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
1 year ago
Arthur Schiwon
fdd24090ff
fix(Middleware): log deprecation when annotation was actually used
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
12 months ago
Nextcloud bot
f47d1e99db
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
12 months ago