This commit is contained in:
2020-12-15 19:17:28 +00:00
parent dc4b6a1349
commit 1a3bdb36c5
8 changed files with 44 additions and 11 deletions

View File

@@ -56,9 +56,10 @@ namespace AyaNova.Api.Controllers
/// So a tag query might be entered as "..zon some" which would match all tags LIKE 'zon' and template fields LIKE 'some'</param>
/// <param name="inactive">Include inactive objects in the returned list </param>
/// <param name="preId">Return only one item (for pre-selected items on forms) </param>
/// <param name="variant">Some lists optionally take a variant string, e.g. User type "inside","outside" etc </param>
/// <returns>Filtered list</returns>
[HttpGet("list")]
public async Task<IActionResult> GetList([FromQuery]AyaType ayaType, [FromQuery]string query, [FromQuery] bool inactive, [FromQuery]long? preId)
public async Task<IActionResult> GetList([FromQuery] AyaType ayaType, [FromQuery] string query, [FromQuery] bool inactive, [FromQuery] long? preId, [FromQuery] string variant)
{
if (serverState.IsClosed)
return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason));
@@ -83,7 +84,7 @@ namespace AyaNova.Api.Controllers
if (preId == null)
preId = 0;
var o = await biz.GetPickListAsync(PickList, query, inactive, (long)preId, log);
var o = await biz.GetPickListAsync(PickList, query, inactive, (long)preId, variant, log);
if (o == null)
return BadRequest(new ApiErrorResponse(biz.Errors));
else