feat: Enrich DTOs and UI to display member names instead of UUIDs for task assignees, creators, and shift signups.
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
namespace WorkClub.Application.Tasks.DTOs;
|
||||
|
||||
public record TaskDetailDto(
|
||||
Guid Id,
|
||||
string Title,
|
||||
string? Description,
|
||||
string Status,
|
||||
Guid? AssigneeId,
|
||||
Guid CreatedById,
|
||||
Guid ClubId,
|
||||
DateTimeOffset? DueDate,
|
||||
DateTimeOffset CreatedAt,
|
||||
DateTimeOffset UpdatedAt,
|
||||
bool IsAssignedToMe
|
||||
Guid Id,
|
||||
string Title,
|
||||
string? Description,
|
||||
string Status,
|
||||
Guid? AssigneeId,
|
||||
string? AssigneeName,
|
||||
Guid CreatedById,
|
||||
string? CreatedByName,
|
||||
Guid ClubId,
|
||||
DateTimeOffset? DueDate,
|
||||
DateTimeOffset CreatedAt,
|
||||
DateTimeOffset UpdatedAt,
|
||||
bool IsAssignedToMe
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user