This commit is contained in:
2021-09-22 17:40:30 +00:00
parent 8512819a2d
commit feb43cad8c
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ namespace AyaNova.Api.Controllers
if (!ModelState.IsValid)
return BadRequest(new ApiErrorResponse(ModelState));
var o = await biz.GetAsync(formKey);
if (o == null) return NotFound(new ApiErrorResponse(ApiErrorCode.NOT_FOUND));
//note: this route unique in that it's expected that a formUserOptions object may not exist so just return null as client end expects
return Ok(ApiOkResponse.Response(o));
}