basic notify_push usage with session handling (rebased)

Signed-off-by: chandi Langecker <git@chandi.it>
This commit is contained in:
chandi Langecker
2022-08-04 14:42:27 +02:00
parent 0c69404ac9
commit fcfbcc63b4
21 changed files with 805 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ class BoardTest extends TestCase {
'archived' => false,
'users' => ['user1', 'user2'],
'settings' => [],
'activeSessions' => [],
'ETag' => $board->getETag(),
], $board->jsonSerialize());
}
@@ -55,6 +56,7 @@ class BoardTest extends TestCase {
'archived' => false,
'users' => ['user1', 'user2'],
'settings' => [],
'activeSessions' => [],
'ETag' => $board->getETag(),
], $board->jsonSerialize());
}
@@ -76,6 +78,7 @@ class BoardTest extends TestCase {
'archived' => false,
'users' => [],
'settings' => [],
'activeSessions' => [],
'ETag' => $board->getETag(),
], $board->jsonSerialize());
}
@@ -105,6 +108,7 @@ class BoardTest extends TestCase {
'shared' => 1,
'users' => [],
'settings' => [],
'activeSessions' => [],
'ETag' => $board->getETag(),
], $board->jsonSerialize());
}