Add lastModified field to labels

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-04-10 16:39:57 +02:00
parent d9305fc347
commit b0eaae6705
4 changed files with 26 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ class LabelTest extends TestCase {
'title' => 'My Label',
'boardId' => 123,
'cardId' => null,
'lastModified' => null,
'color' => '000000'
], $label->jsonSerialize());
@@ -53,10 +54,11 @@ class LabelTest extends TestCase {
'title' => 'My Label',
'boardId' => null,
'cardId' => 123,
'lastModified' => null,
'color' => '000000'
], $label->jsonSerialize());
}
}
}