Removed unused readOnly property on return response

This commit is contained in:
2020-05-18 16:25:08 +00:00
parent eacf8eb7aa
commit 07390b6a31
42 changed files with 126 additions and 125 deletions

View File

@@ -200,7 +200,7 @@ namespace AyaNova.Api.Controllers
return Ok(ApiOkResponse.Response(ReturnList, true));
return Ok(ApiOkResponse.Response(ReturnList));
}
@@ -223,7 +223,7 @@ namespace AyaNova.Api.Controllers
ret.Add(new KeyValuePair<string, string>("Core", "All Core AyaNova business object types"));
ret.Add(new KeyValuePair<string, string>(StringUtil.TrimTypeName(typeof(UiFieldDataType).ToString()), "Types of data used in AyaNova for display and formatting UI purposes"));
return Ok(ApiOkResponse.Response(ret, true));
return Ok(ApiOkResponse.Response(ret));
}