mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
fix(response): add $id to Log
This commit is contained in:
parent
058b4dd975
commit
7034f84a6e
1 changed files with 6 additions and 0 deletions
|
|
@ -10,6 +10,12 @@ class Log extends Model
|
|||
public function __construct()
|
||||
{
|
||||
$this
|
||||
->addRule('$id', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'description' => 'Log ID.',
|
||||
'default' => '',
|
||||
'example' => '5e5ea5c16897e',
|
||||
])
|
||||
->addRule('event', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'description' => 'Event name.',
|
||||
|
|
|
|||
Loading…
Reference in a new issue