We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2880a07 commit 36bc26fCopy full SHA for 36bc26f
lib/point_system/api/issues_api.dart
@@ -21,7 +21,7 @@ class IssuesApi {
21
22
static Future<List<Issue>> getIssues(
23
{int page = 1, int pageSize = 100}) async {
24
- List<dynamic> res = (await dio.get('/point_bloc',
+ List<dynamic> res = (await dio.get('/point',
25
queryParameters: {"page": page, "pageSize": pageSize}))
26
.data['data'] as List;
27
return res.map((e) => Issue.fromJson(json.decode(e['pointData']))).toList();
0 commit comments