mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
20 lines
348 B
PHP
20 lines
348 B
PHP
<?php
|
|
|
|
namespace Appwrite\Utopia\Database\Validator\Queries;
|
|
|
|
class Reports extends Base
|
|
{
|
|
public const ALLOWED_ATTRIBUTES = [
|
|
'appId',
|
|
'type',
|
|
'targetType',
|
|
'target',
|
|
'analyzedAt',
|
|
];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct('reports', self::ALLOWED_ATTRIBUTES);
|
|
}
|
|
}
|