mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
Rewrite the BitpayAuthHandler more clearly
This commit is contained in:
parent
873c0a183a
commit
4d7e9d3f8a
@ -71,9 +71,7 @@ namespace BTCPayServer.Security
|
||||
success = storeId != null;
|
||||
}
|
||||
|
||||
if (success.HasValue)
|
||||
{
|
||||
if (success.Value)
|
||||
if (success is true)
|
||||
{
|
||||
if (storeId != null)
|
||||
{
|
||||
@ -84,11 +82,11 @@ namespace BTCPayServer.Security
|
||||
}
|
||||
return AuthenticateResult.Success(new AuthenticationTicket(new ClaimsPrincipal(new ClaimsIdentity(claims, Policies.BitpayAuthentication)), Policies.BitpayAuthentication));
|
||||
}
|
||||
else
|
||||
else if (success is false)
|
||||
{
|
||||
return AuthenticateResult.Fail("Invalid credentials");
|
||||
}
|
||||
}
|
||||
// else if (success is null)
|
||||
}
|
||||
return AuthenticateResult.NoResult();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user