mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed the bug where only showing API User #2187
This commit is contained in:
parent
f24b0f20eb
commit
6806b97c1b
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ namespace Ombi.Controllers
|
|||
[PowerUser]
|
||||
public async Task<IEnumerable<UserViewModel>> GetAllUsers()
|
||||
{
|
||||
var users = await UserManager.Users.Where(x => x.UserType != UserType.LocalUser)
|
||||
var users = await UserManager.Users.Where(x => x.UserType != UserType.SystemUser)
|
||||
.ToListAsync();
|
||||
|
||||
var model = new List<UserViewModel>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue