This commit is contained in:
2020-07-07 23:12:34 +00:00
parent 753e823cbd
commit 0d1247e752

View File

@@ -62,7 +62,9 @@ namespace AyaNova.Api.Controllers
//STUB: https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3783
if (serverState.IsClosed)
return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason));
return Ok(ApiOkResponse.Response(69));
System.Random rnd = new System.Random();
int RandomNewCount = rnd.Next(20);
return Ok(ApiOkResponse.Response(RandomNewCount));
}
//TODO: See new count case for gist of it