diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-12 10:41:41 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | 9b84831c8d0c1d715cd42fa3e4e01ac8a59fa369 (patch) | |
tree | e39514c2cd1e51150075dff10c36c664d2d53ab2 /build | |
parent | 62defbd6b4dded5cdb4d76efe947231cc310263b (diff) | |
download | nextcloud-server-9b84831c8d0c1d715cd42fa3e4e01ac8a59fa369.tar.gz nextcloud-server-9b84831c8d0c1d715cd42fa3e4e01ac8a59fa369.zip |
fix(files_sharing): adjust IAttributes API and files_versions
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/bootstrap/Sharing.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/Sharing.php b/build/integration/features/bootstrap/Sharing.php index c0affcb9cda..d1d89649bd6 100644 --- a/build/integration/features/bootstrap/Sharing.php +++ b/build/integration/features/bootstrap/Sharing.php @@ -286,7 +286,7 @@ trait Sharing { } if ($viewOnly === true) { - $body['attributes'] = json_encode([['scope' => 'permissions', 'key' => 'download', 'enabled' => false]]); + $body['attributes'] = json_encode([['scope' => 'permissions', 'key' => 'download', 'value' => false]]); } $options['form_params'] = $body; |