Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ this project adheres to [Semantic Versioning](https://semver.org/).

### Changed

- Dashboard redesigned: minimal dark UI with sidebar navigation (Overview,
Matches, Game inspector, Live console, Requests, Roadmap).

- REST routes now return typed Pydantic models instead of raw dicts.

## [0.1.0] - 2026-06-08
Expand Down
3 changes: 2 additions & 1 deletion tests/test_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def test_dashboard_is_served():
with TestClient(app) as client:
r = client.get("/dashboard/")
assert r.status_code == 200
assert "control room" in r.text
assert "esport-api" in r.text
assert "Game inspector" in r.text


def test_root_redirects_to_dashboard():
Expand Down
Loading