mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
projectPage fetch unauthenticated API
This commit is contained in:
parent
5a7c22157a
commit
c448a37591
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ namespace TicketManager.DTO
|
|||
Progression = project.Progression;
|
||||
Status = project.Status.ToString();
|
||||
Manager = project.Manager;
|
||||
AppUsers = project.GetMembers();
|
||||
Users = project.GetMembers();
|
||||
Tickets = project.Tickets;
|
||||
Activities = project.Activities;
|
||||
Files = project.Files;
|
||||
|
|
@ -36,7 +36,7 @@ namespace TicketManager.DTO
|
|||
public string Status { get; set; }
|
||||
|
||||
public AppUser Manager { get; set; }
|
||||
public List<AppUser> AppUsers { get; set; } = new List<AppUser>();
|
||||
public List<AppUser> Users { get; set; } = new List<AppUser>();
|
||||
|
||||
public List<Ticket> Tickets { get; set; } = new List<Ticket>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue