diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-26 13:37:11 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-26 13:37:11 +0200 |
| commit | 10a9435c7fece43c588addb744952d92596a8f5b (patch) | |
| tree | f3a05a18a437b64f8876cf193497eaa054d7dc57 /Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication | |
| parent | 0821e00982f13f234c4e83def85b2d49a5fed9b8 (diff) | |
| download | Tango-10a9435c7fece43c588addb744952d92596a8f5b.tar.gz Tango-10a9435c7fece43c588addb744952d92596a8f5b.zip | |
Implemented single user mode on PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication/IAuthenticationProvider.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication/IAuthenticationProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication/IAuthenticationProvider.cs index dd7faae36..33761c8d6 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication/IAuthenticationProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Authentication/IAuthenticationProvider.cs @@ -27,8 +27,9 @@ namespace Tango.PPC.Common.Authentication /// </summary> /// <param name="email">The email.</param> /// <param name="password">The password.</param> + /// <param name="encrypt">Determines whether to encrypt the provided password before attempting to login</param> /// <returns></returns> - Task<User> Login(String email, String password); + Task<User> Login(String email, String password, bool encrypt = true); /// <summary> /// Logs-out the current logged-in user. |
