This commit is contained in:
2019-04-30 18:34:33 +00:00
parent 6a6f94c51e
commit 7b9010b060
14 changed files with 43 additions and 40 deletions

View File

@@ -129,7 +129,7 @@ namespace AyaNova.Api.Controllers
}
return Ok(new ApiOkResponse(ReturnList));
return Ok(new ApiOkResponse(ReturnList, true));
}
@@ -154,7 +154,7 @@ namespace AyaNova.Api.Controllers
ret.Add(new KeyValuePair<string, string>("authorizationroles", "AyaNova user account role types"));
ret.Add(new KeyValuePair<string, string>("AyaType", "All AyaNova object types, use the AyaTypeController route to fetch these"));
return Ok(new ApiOkResponse(ret));
return Ok(new ApiOkResponse(ret, true));
}