diff --git a/filcnaplo/lib/api/client.dart b/filcnaplo/lib/api/client.dart index 42638e9..8005fd0 100644 --- a/filcnaplo/lib/api/client.dart +++ b/filcnaplo/lib/api/client.dart @@ -20,7 +20,13 @@ class FilcAPI { http.Response res = await http.get(Uri.parse(SCHOOL_LIST)); if (res.statusCode == 200) { - return (jsonDecode(res.body) as List).cast().map((json) => School.fromJson(json)).toList(); + List schools = (jsonDecode(res.body) as List).cast().map((json) => School.fromJson(json)).toList(); + schools.add(School( + city: "Tiszabura", + instituteCode: "supporttest-reni-tiszabura-teszt01", + name: "FILC Éles Reni tiszabura-teszt", + )); + return schools; } else { throw "HTTP ${res.statusCode}: ${res.body}"; }