1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-18 15:42:51 -04:00

fix: id -> wId

This commit is contained in:
CyberL1 2024-05-22 07:40:30 +02:00
parent 4a34048841
commit 5ca12b1530

View File

@ -147,18 +147,18 @@ namespace MyMcRealms.Controllers
[HttpPost("{wId}/reset")] [HttpPost("{wId}/reset")]
[CheckRealmOwner] [CheckRealmOwner]
public ActionResult<string> ChangeSlot(int id) public ActionResult<string> ChangeSlot(int wId)
{ {
return BadRequest("lol nice try"); return BadRequest("lol nice try");
} }
[HttpPut("{id}/open")] [HttpPut("{wId}/open")]
[CheckRealmOwner] [CheckRealmOwner]
public async Task<ActionResult<bool>> Open(int id) public async Task<ActionResult<bool>> Open(int wId)
{ {
var _api = new MyMcAPI.Wrapper(Environment.GetEnvironmentVariable("MYMC_API_KEY")); var _api = new MyMcAPI.Wrapper(Environment.GetEnvironmentVariable("MYMC_API_KEY"));
var world = (await _api.GetAllServers()).Servers[id]; var world = (await _api.GetAllServers()).Servers[wId];
var api = new MyMcAPI.Wrapper(world.OwnersToken); var api = new MyMcAPI.Wrapper(world.OwnersToken);
if (world == null) return NotFound("World not found"); if (world == null) return NotFound("World not found");
@ -168,13 +168,13 @@ namespace MyMcRealms.Controllers
return Ok(true); return Ok(true);
} }
[HttpPut("{id}/close")] [HttpPut("{wId}/close")]
[CheckRealmOwner] [CheckRealmOwner]
public async Task<ActionResult<bool>> Close(int id) public async Task<ActionResult<bool>> Close(int wId)
{ {
var _api = new MyMcAPI.Wrapper(Environment.GetEnvironmentVariable("MYMC_API_KEY")); var _api = new MyMcAPI.Wrapper(Environment.GetEnvironmentVariable("MYMC_API_KEY"));
var world = (await _api.GetAllServers()).Servers[id]; var world = (await _api.GetAllServers()).Servers[wId];
var api = new MyMcAPI.Wrapper(world.OwnersToken); var api = new MyMcAPI.Wrapper(world.OwnersToken);
if (world == null) return NotFound("World not found"); if (world == null) return NotFound("World not found");