mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
Merge pull request #3779 from appwrite/fix-filesecurity-response-type
Fix filesecurity response type
This commit is contained in:
commit
61a852affd
1 changed files with 2 additions and 2 deletions
|
|
@ -36,9 +36,9 @@ class Bucket extends Model
|
|||
'array' => true,
|
||||
])
|
||||
->addRule('fileSecurity', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'type' => self::TYPE_BOOLEAN,
|
||||
'description' => 'Whether file-level security is enabled. [Learn more about permissions](/docs/permissions).',
|
||||
'default' => '',
|
||||
'default' => false,
|
||||
'example' => true,
|
||||
])
|
||||
->addRule('name', [
|
||||
|
|
|
|||
Loading…
Reference in a new issue