Skip to content

Commit

Permalink
refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
scoxen1 committed Apr 16, 2024
1 parent ff18803 commit 84bdee9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/CESMII.Marketplace.JobManager/Jobs/JobOntimeEdgeTrial.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ private bool ValidateEmailDomain(string email, out string message)

if (numMatches > 0)
{
sbResult.AppendLine("This trial does not permit use of free email domains. Please use a different email.");
//var matches = repoBlockedDomains.FindByCondition(x => email.Trim().ToLower().EndsWith(x.domain.ToLower())).Select(x => x.domain).ToList();
sbResult.AppendLine("Signing up for this trial prohibits use of free email domains. Please use a different email.");
_logger.LogWarning($"JobOnTimeEdgeTrial|ValidateEmailDomain|Blocked|Email '{email}' has a blocked email domain and is not permitted.");
}
}
Expand Down

0 comments on commit 84bdee9

Please sign in to comment.