fixed load and overlay flow, missing sync
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele Scandura 2021-09-17 11:42:36 +01:00
parent 9abe30904f
commit db41143312
10 changed files with 51 additions and 19 deletions

View file

@ -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;
}