public LobbyInfo GetLobbyInfo([FromBody] int eventId) { if (this.User.Identity.IsAuthenticated) { var steamId = UserExtensions.GetSteamId(this.User); return(_schedulingService.GetLobbyInfo(eventId, steamId)); } return(null); }