Remove remnants of the Angular implementation (#16026)

This commit is contained in:
Kenn Jacobsen
2024-04-11 09:08:56 +02:00
committed by GitHub
parent 80c5d28316
commit d47638df98
10 changed files with 4 additions and 91 deletions

View File

@@ -115,8 +115,7 @@ public class UmbExternalLoginController : SurfaceController
await _memberManager.FindByLoginAsync(loginInfo.LoginProvider, loginInfo.ProviderKey);
if (attemptedUser == null!)
{
return new ValidationErrorResult(
$"No local user found for the login provider {loginInfo.LoginProvider} - {loginInfo.ProviderKey}");
return BadRequest($"No local user found for the login provider {loginInfo.LoginProvider} - {loginInfo.ProviderKey}");
}
IEnumerable<string> providerNames =