mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
fix flight club
- add placeholder for GetGameData
This commit is contained in:
parent
724a052e17
commit
794b8487f1
@ -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")]
|
||||
|
9
src/Schema/GetGameDataResponse.cs
Normal file
9
src/Schema/GetGameDataResponse.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace sodoff.Schema;
|
||||
|
||||
[XmlRoot(ElementName = "GetGameDataResponse", Namespace = "")]
|
||||
[Serializable]
|
||||
public class GetGameDataResponse
|
||||
{
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user