1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Fix small issue with query optimization missing a FK set

Fix accidentally rename of controller method
This commit is contained in:
RaidMax
2019-11-18 08:08:09 -06:00
parent edb00523a1
commit 040ade364e
7 changed files with 23 additions and 13 deletions

View File

@ -152,7 +152,7 @@ namespace WebfrontCore.Controllers
return View("Find/Index", clientsDto);
}
public async Task<IActionResult> GetMeta(int id, int count, int offset, DateTime? startAt)
public async Task<IActionResult> Meta(int id, int count, int offset, DateTime? startAt)
{
IEnumerable<ProfileMeta> meta = await MetaService.GetRuntimeMeta(id, startAt == null ? offset : 0, count, startAt ?? DateTime.UtcNow);