mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 15:08:43 +00:00
21 lines
376 B
PHP
21 lines
376 B
PHP
<?php
|
|
|
|
namespace Appwrite\Utopia\Database\Validator\Queries;
|
|
|
|
class Collections extends Base
|
|
{
|
|
public const ALLOWED_ATTRIBUTES = [
|
|
'name',
|
|
'enabled',
|
|
'documentSecurity'
|
|
];
|
|
|
|
/**
|
|
* Expression constructor
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct('collections', self::ALLOWED_ATTRIBUTES);
|
|
}
|
|
}
|