- activity on menu
- starting activity page
This commit is contained in:
2024-06-17 22:36:37 +02:00
parent 671551c7f8
commit f7bb7b9148
14 changed files with 524 additions and 33 deletions

View File

@@ -12,9 +12,9 @@ class NotificationService
}
public function sendUpdate(string $topic, mixed $data): void
public function sendUpdate(mixed $data): void
{
$update = new Update($topic, json_encode($data));
$update = new Update('notification', json_encode($data));
$this->hub->publish($update);
}
}