From fde6ba55d2a6ef4aa2183b17cafdc987c7c67e3f Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 30 Jan 2026 23:21:12 +0100 Subject: [PATCH] feat(tournament): enable external participation in tournaments - Updated tournamentService to allow external participants by setting allowsExternal to true. - Adjusted frontend TournamentTab component to reflect the change, enabling external participation for mini championships. --- backend/services/tournamentService.js | 2 +- frontend/src/views/TournamentsView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/services/tournamentService.js b/backend/services/tournamentService.js index 4411bc8..69b42a0 100644 --- a/backend/services/tournamentService.js +++ b/backend/services/tournamentService.js @@ -739,7 +739,7 @@ class TournamentService { numberOfGroups: 1, advancingPerGroup: 1, winningSets: sets, - allowsExternal: false, + allowsExternal: true, miniChampionshipYear: Y }, { transaction }); diff --git a/frontend/src/views/TournamentsView.vue b/frontend/src/views/TournamentsView.vue index 6521723..99366fc 100644 --- a/frontend/src/views/TournamentsView.vue +++ b/frontend/src/views/TournamentsView.vue @@ -37,7 +37,7 @@
- +