fix(response): add $id to Log

This commit is contained in:
Torsten Dittmann 2021-11-16 12:20:25 +01:00
parent 058b4dd975
commit 7034f84a6e

View file

@ -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.',