mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
Make func model execute attribute an array
This commit is contained in:
parent
c95aa9072a
commit
d196d108d8
1 changed files with 2 additions and 2 deletions
|
|
@ -19,9 +19,9 @@ class Func extends Model
|
|||
->addRule('execute', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'description' => 'Execution permissions.',
|
||||
'default' => '',
|
||||
'default' => [],
|
||||
'example' => 'role:member',
|
||||
'array' => false,
|
||||
'array' => true,
|
||||
])
|
||||
->addRule('name', [
|
||||
'type' => self::TYPE_STRING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue