fix flight club

- add placeholder for GetGameData
This commit is contained in:
Robert Paciorek 2023-08-09 17:50:31 +00:00 committed by Spirtix
parent 724a052e17
commit 794b8487f1
2 changed files with 17 additions and 0 deletions

View File

@ -770,6 +770,14 @@ public class ContentController : Controller {
return Ok(roomService.NextItemState(item, request.OverrideStateCriteria));
}
[HttpPost]
[Produces("application/xml")]
[Route("V2/ContentWebService.asmx/GetGameData")]
public IActionResult GetGameData() {
// TODO: This is a placeholder
return Ok(new GetGameDataResponse());
}
[HttpPost]
[Produces("application/xml")]
[Route("ContentWebService.asmx/GetUserGameCurrency")]

View File

@ -0,0 +1,9 @@
using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "GetGameDataResponse", Namespace = "")]
[Serializable]
public class GetGameDataResponse
{
}