feat(match): add endpoint to retrieve active players for a club

- Implemented a new controller method `getMatchPlayers` to fetch active members of a specified club, returning their details.
- Updated the match routes to include a new GET route for retrieving players by club ID.
- Modified the ScheduleView to include the current club ID when updating player information.
This commit is contained in:
Torsten Schulz (local)
2026-02-05 22:58:44 +01:00
parent 84bbcb0f87
commit 5605cd6189
3 changed files with 21 additions and 1 deletions

View File

@@ -497,6 +497,7 @@ export default {
try {
const response = await apiClient.patch(`/matches/${match.id}/players`, {
clubId: this.currentClub,
playersReady,
playersPlanned,
playersPlayed