holy fuck.

This commit is contained in:
Laurent
2025-03-21 17:57:07 +01:00
parent 02ce43e7b7
commit be5e86c10d
49 changed files with 475 additions and 517 deletions

View File

@@ -25,7 +25,8 @@ export class EventRequests {
return fetch(url)
.then(response => response.json())
.then(data => {
return new EventDto(data.name, data.token, data.dates)
console.log(data);
return new EventDto(data.name, data.token, data.attendances);
})
.catch(error => console.error(error));
}