Started with the separating of different filter fields for a generic metadata-filter component.

As of this commit, I've restructured some of how data flows and added documentation to make it easier for the next time.
This commit is contained in:
Joseph Milazzo 2025-06-08 13:53:32 -05:00
parent 60cd000af5
commit 2654ea2965
28 changed files with 230 additions and 148 deletions

View file

@ -90,6 +90,17 @@ public class PersonController : BaseApiController
return Ok(list);
}
// [HttpPost("all-v2")]
// public async Task<ActionResult<PagedList<BrowsePersonDto>>> GetAuthorsForBrowse(FilterV2Dto filter, [FromQuery] UserParams? userParams)
// {
// userParams ??= UserParams.Default;
//
// // var list = await _unitOfWork.PersonRepository.GetBrowsePersonDtos(User.GetUserId(), filter, userParams);
// // Response.AddPaginationHeader(list.CurrentPage, list.PageSize, list.TotalCount, list.TotalPages);
//
// return Ok([]);
// }
/// <summary>
/// Updates the Person
/// </summary>