This commit is contained in:
@@ -86,11 +86,11 @@ namespace AyaNova.Api.Controllers
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Get Translation pick list
|
||||
/// Get Translations list
|
||||
/// </summary>
|
||||
/// <returns>Picklist in alphabetical order of all Translations</returns>
|
||||
[HttpGet("PickList")]
|
||||
public async Task<IActionResult> TranslationPickList()
|
||||
/// <returns>List in alphabetical order of all Translations</returns>
|
||||
[HttpGet("List")]
|
||||
public async Task<IActionResult> TranslationList()
|
||||
{
|
||||
if (serverState.IsClosed)
|
||||
{
|
||||
@@ -100,7 +100,7 @@ namespace AyaNova.Api.Controllers
|
||||
//Instantiate the business object handler
|
||||
TranslationBiz biz = TranslationBiz.GetBiz(ct, HttpContext);
|
||||
|
||||
var l = await biz.GetPickListAsync();
|
||||
var l = await biz.GetTranslationListAsync();
|
||||
return Ok(ApiOkResponse.Response(l, true));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user