This commit is contained in:
2020-01-17 19:59:27 +00:00
parent 9a64b8310e
commit 8c7d5119a8
13 changed files with 96 additions and 96 deletions

View File

@@ -59,9 +59,9 @@ namespace AyaNova.Api.Controllers
if (!ModelState.IsValid)
return BadRequest(new ApiErrorResponse(ModelState));
if (ObjectFields.IsValidObjectKey(objectKey))
if (AyaObjectFields.IsValidObjectKey(objectKey))
{
return Ok(ApiOkResponse.Response(ObjectFields.ObjectFieldsList(objectKey), true));
return Ok(ApiOkResponse.Response(AyaObjectFields.ObjectFieldsList(objectKey), true));
}
else
{