Implementing all cht classic routes

This commit is contained in:
2025-04-19 01:32:26 +02:00
parent 8766be57d0
commit 2249791267
11 changed files with 221 additions and 26 deletions

View File

@@ -66,7 +66,7 @@ export const dataProvider: DataProvider = {
});
}
const response = await fetch(`${API_URL}/${resource}?${params.toString()}`);
const response = await fetch(`${API_URL}/${resource}/?${params.toString()}`);
if (response.status < 200 || response.status > 299) {
if (response.status == 405) {