From 7b22fc549089ea11a90486bcef0afbaba4efe3fa Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Thu, 26 Sep 2019 19:29:21 +0300 Subject: Fixed issue with BypassVersionCheck not loading modules. Added ForceVersionUpdate setting. --- .../Authentication/IAuthenticationProvider.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Authentication') diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Authentication/IAuthenticationProvider.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Authentication/IAuthenticationProvider.cs index 4958cb0f4..74969fd27 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Authentication/IAuthenticationProvider.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Authentication/IAuthenticationProvider.cs @@ -4,13 +4,14 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; +using Tango.MachineStudio.Common.Web; -namespace Tango.MachineStudio.Common.Authentication +namespace Tango.MachineStudio.Common.Authentication { /// /// Represents the Machine Studio user authentication provider responsible for the current logged-in user. /// - public interface IAuthenticationProvider + public interface IAuthenticationProvider { /// /// Occurs when the current logged-in user has changed. @@ -28,7 +29,7 @@ namespace Tango.MachineStudio.Common.Authentication /// The email. /// The password. /// - AuthenticationLoginResult Login(String email, String password); + AuthenticationLoginResult Login(String email, String password, bool bypassVersionCheck = false); /// /// Logs-out the current logged-in user. -- cgit v1.3.1