Odstranění zbytečných stránek, přidání administrace pro pozvánky.

This commit is contained in:
Matěj Kubíček
2026-09-17 17:06:27 +02:00
parent 2040a16879
commit 3a35d10227
11 changed files with 136 additions and 121 deletions
@@ -0,0 +1,8 @@
namespace StuzkovakWeb.ViewModels;
public class AdminInviteDetailViewModel
{
public Guid Id { get; set; }
public string TeacherName { get; set; }
public bool? IsAccepted { get; set; }
}
@@ -0,0 +1,10 @@
using StuzkovakWeb.Entities;
namespace StuzkovakWeb.Models;
public class UserWithRolesViewModel
{
public UserEntity UserEntity { get; set; } = null!;
public IList<string> Roles { get; set; } = [];
public IList<string> AllRoles { get; set; } = [];
}