Fix small issue with query optimization missing a FK set
Fix accidentally rename of controller method
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user