public ActionResult ChooseObjectiveType(int?gameId)
        {
            var objectiveContentTypes = _objectiveService.GetObjectiveContentTypes();

            var viewModel = new ChooseObjectiveViewModel
            {
                GameId = gameId,
                ObjectiveContentTypes = objectiveContentTypes,
            };

            return(View(viewModel));
        }