add tests

This commit is contained in:
Dennis Eichhorn 2020-02-19 22:24:22 +01:00
parent 7dcd5f41e5
commit bbf2bd6697
2 changed files with 16 additions and 14 deletions

View File

@ -293,6 +293,7 @@ class Report implements \JsonSerializable
'createdAt' => $this->createdAt, 'createdAt' => $this->createdAt,
'name' => $this->title, 'name' => $this->title,
'description' => $this->description, 'description' => $this->description,
'descriptionRaw' => $this->descriptionRaw,
'status' => $this->status, 'status' => $this->status,
]; ];
} }

View File

@ -387,6 +387,7 @@ class Template implements \JsonSerializable
'createdAt' => $this->createdAt, 'createdAt' => $this->createdAt,
'name' => $this->name, 'name' => $this->name,
'description' => $this->description, 'description' => $this->description,
'descriptionRaw' => $this->descriptionRaw,
'status' => $this->status, 'status' => $this->status,
'datatype' => $this->datatype, 'datatype' => $this->datatype,
'standalone' => $this->isStandalone, 'standalone' => $this->isStandalone,