Added realRadius & realLength

Added .NET heidiSQL check on setup
Fix incremental softkey x10..
This commit is contained in:
Lucio Maranta
2019-06-04 17:15:58 +02:00
parent 708f958b0f
commit 96d19f4779
16 changed files with 87 additions and 32 deletions
@@ -12,6 +12,7 @@ using System.Web.Http;
using System.Web.Helpers;
using static Step.Model.Constants;
using static Step.Utils.LanguageController;
using Step.Utils;
namespace Step.Controllers.WebApi
{
@@ -40,6 +41,9 @@ namespace Step.Controllers.WebApi
// Send to the clients the id of the disconnected user
var context = GlobalHost.ConnectionManager.GetHubContext<NcHub>();
context.Clients.All.logout(new { id = userId.Value });
StepLogger.LogMessage("Logout: " + userId.Value + "Date:" + DateTime.Now, ERROR_LEVEL.INFO);
return Ok();
}