Removed unused readOnly property on return response
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user