Merge remote-tracking branch 'Umbraco/netcore/dev' into netcore/feature/users

This commit is contained in:
Scott Brady
2020-04-24 12:46:48 +01:00
20 changed files with 282 additions and 86 deletions

View File

@@ -137,7 +137,9 @@ namespace Umbraco.Web.Security
{
_logger.WriteCore(TraceEventType.Information, 0,
$"Login attempt failed for username {userName} from IP address {_request.RemoteIpAddress}, no content and/or media start nodes could be found for any of the user's groups", null, null);
return SignInResult.Failed;
// We will say its a sucessful login which it is, but they have no node access
return SignInStatus.Success;
}
}