fixed load and overlay flow, missing sync
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9abe30904f
commit
db41143312
10 changed files with 51 additions and 19 deletions
|
@ -26,9 +26,9 @@ namespace Sledgemapper.Api.Controllers
|
|||
}
|
||||
|
||||
[HttpGet]
|
||||
public async Task<Session> Get(string campaign, string mapName)
|
||||
public async Task<Session> Get(Guid campaign, Guid mapName)
|
||||
{
|
||||
var result = await _mediator.Send(new GetMapSnapshotCommand(mapName));
|
||||
var result = await _mediator.Send(new GetMapSnapshotCommand(campaign, mapName));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue