We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9af1dd8 + e8417c9 commit 0324423Copy full SHA for 0324423
DigitalLearningSolutions.Web/Services/UserService.cs
@@ -275,7 +275,7 @@ public void UpdateFailedLoginCount(UserAccount userAccount)
275
public IEnumerable<DelegateUserCard> GetDelegateUserCardsForWelcomeEmail(int centreId)
276
{
277
return userDataService.GetDelegateUserCardsByCentreId(centreId).Where(
278
- user => user.Approved && !user.SelfReg && string.IsNullOrEmpty(user.Password) &&
+ user => user.Approved && !user.SelfReg &&
279
!string.IsNullOrEmpty(user.EmailAddress)
280
&& !Guid.TryParse(user.EmailAddress, out _)
281
&& user.RegistrationConfirmationHash != null
0 commit comments