Aggiunta gestione code errori
This commit is contained in:
@@ -37,6 +37,9 @@ namespace WebDoorCreator.API.Controllers
|
||||
var actProc = await QDataServ.NumRequestProcessing();
|
||||
answ.Add("processing", actProc);
|
||||
|
||||
var actErr = await QDataServ.NumRequestErrors();
|
||||
answ.Add("errors", actErr);
|
||||
|
||||
var actDone = await QDataServ.NumRequestDone();
|
||||
answ.Add("done", actDone);
|
||||
return answ;
|
||||
@@ -88,6 +91,9 @@ namespace WebDoorCreator.API.Controllers
|
||||
var actProc = await QDataServ.RequestProcessing();
|
||||
answ.Add("processing", actProc);
|
||||
|
||||
var actErr = await QDataServ.RequestErr();
|
||||
answ.Add("errors", actErr);
|
||||
|
||||
var actDone = await QDataServ.RequestDone();
|
||||
answ.Add("done", actDone);
|
||||
return answ;
|
||||
|
||||
Reference in New Issue
Block a user