fix: resolve linting errors, refs NOISSUE
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
public interface IAuthenticationService
|
||||
{
|
||||
bool Authenticate(string userName, string password);
|
||||
public interface IAuthenticationService
|
||||
{
|
||||
bool Authenticate(string userName, string password);
|
||||
}
|
@@ -34,7 +34,7 @@ public class PhoneClaimCodeProviderService
|
||||
|
||||
SignalIntegration.Instance.SendMessageToUserAsync("Your phone number validation code is: " + generatedCode, phoneNumber);
|
||||
}
|
||||
|
||||
|
||||
public string ValidateClaimCodeForUser(string code, string username)
|
||||
{
|
||||
var result = false;
|
||||
@@ -50,7 +50,7 @@ public class PhoneClaimCodeProviderService
|
||||
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
|
||||
public bool IsCodeGeneratedForUser(string username)
|
||||
{
|
||||
return _phoneClaimCodes.ContainsKey(username);
|
||||
|
Reference in New Issue
Block a user