fix: resolve linting errors, refs NOISSUE

This commit is contained in:
2025-05-18 11:42:09 +02:00
parent 055cf79354
commit 083038d76c
5 changed files with 13 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
public interface IAuthenticationService
{
bool Authenticate(string userName, string password);
public interface IAuthenticationService
{
bool Authenticate(string userName, string password);
}

View File

@@ -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);