Compare commits

..

2 Commits

Author SHA1 Message Date
Eduardo Lopes d898934144
Merge 4ad3491886 into 94908ead00 2026-01-23 15:54:35 -03:00
Eduardo Lopes 4ad3491886 Allow login without tenant filter 2026-01-23 15:29:34 -03:00
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public class AuthController : ControllerBase
var normalizedEmail = _userManager.NormalizeEmail(email);
var users = await _userManager.Users
.IgnoreQueryFilters()
.Where(u => u.NormalizedEmail == normalizedEmail)
.ToListAsync();