aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-23 23:50:13 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-23 23:50:13 +0200
commit879a7c2179d991f4b68a513f60de3472b2e64102 (patch)
tree283332c93e59ff85e05a61c930760ec3b1b2525b /Software/Visual_Studio/Web/Tango.MachineService/Controllers
parentd4cde3ccf2c29991b65285396fb97eafa1e434df (diff)
downloadTango-879a7c2179d991f4b68a513f60de3472b2e64102.tar.gz
Tango-879a7c2179d991f4b68a513f60de3472b2e64102.zip
Implemented cached entities using DataResolver<T>.
Implemented DataResolver Builder. Implemented offline gateway, authentication, machines... Implemented online checking. Moved FSEWebClient and Gateway to BL. Implemented blocking of machines outside of the organization.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
index abcd1c41f..95a26d78e 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
@@ -44,9 +44,6 @@ namespace Tango.MachineService.Controllers
client_version = new Version("1.0.0.0");
}
- bool versionChangeRequired = false;
- String requiredVersion = null;
-
var password = hash.Encrypt(request.Password);
using (var db = ObservablesContextHelper.CreateContext())
@@ -104,8 +101,6 @@ namespace Tango.MachineService.Controllers
{
UserGuid = user.Guid,
}, DateTime.UtcNow.AddDays(1)).AccessToken,
- VersionChangeRequired = versionChangeRequired,
- RequiredVersion = requiredVersion,
PasswordChangeRequired = user.PasswordChangeRequired
};
}