Added role management functionality to the user details page

This commit is contained in:
Matěj Kubíček
2026-05-01 20:16:08 +02:00
parent 3480ce3613
commit 6490c42a9d
3 changed files with 53 additions and 4 deletions
@@ -6,4 +6,5 @@ public class UserWithRolesViewModel
{
public UserEntity UserEntity { get; set; } = null!;
public IList<string> Roles { get; set; } = [];
public IList<string> AllRoles { get; set; } = [];
}