Merge branch 'master' into develop

This commit is contained in:
Samuele Locatelli
2021-08-02 10:04:54 +02:00
+12
View File
@@ -76,6 +76,18 @@ namespace GWMS.UI.Controllers
return $"N.A. | {id} | {taskName} | {taskVal}";
}
/// <summary>
/// Controllo status Alive
///
/// GET: IOB/alive
/// </summary>
/// <returns></returns>
[HttpGet("alive")]
public string alive()
{
return $"OK";
}
// DELETE api/IOB/5
[HttpDelete("{id}")]
public void Delete(int id)