mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
fix removed and reordered attributes
This commit is contained in:
@@ -233,7 +233,7 @@ App::put('/v1/storage/buckets/:bucketId')
|
||||
->inject('dbForProject')
|
||||
->inject('audits')
|
||||
->inject('usage')
|
||||
->action(function ($bucketId, $name, $permission, $read, $write, $maximumFileSize, $allowedFileExtensions, $enabled, $encryption, $antivirus, $response, $dbForProject, $audits, $usage) {
|
||||
->action(function ($bucketId, $name, $permission, $read, $write, $enabled, $maximumFileSize, $allowedFileExtensions, $encryption, $antivirus, $response, $dbForProject, $audits, $usage) {
|
||||
/** @var Appwrite\Utopia\Response $response */
|
||||
/** @var Utopia\Database\Database $dbForProject */
|
||||
/** @var Appwrite\Event\Event $audits */
|
||||
|
||||
@@ -36,7 +36,6 @@ class StorageCustomServerTest extends Scope
|
||||
$this->assertEquals(true, $bucket['body']['enabled']);
|
||||
$this->assertEquals(true, $bucket['body']['encryption']);
|
||||
$this->assertEquals(true, $bucket['body']['antivirus']);
|
||||
$this->assertEquals('local', $bucket['body']['adapter']);
|
||||
$bucketId = $bucket['body']['$id'];
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user