Allow login without tenant filter
This commit is contained in:
parent
53665eae05
commit
4ad3491886
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue