public async Task <IActionResult> GetAllPublicTournaments()
        {
            var allTournaments = await _tournamentService.GetAllPublicTournamentsAsync();

            return(Ok(allTournaments));
        }