feat: refine content calendar experience

This commit is contained in:
2026-05-05 23:25:58 -04:00
parent b66c10b681
commit a7535d460d
72 changed files with 3233 additions and 1310 deletions

View File

@@ -19,6 +19,10 @@ public record CommentDto(
string AuthorEmail,
string? AuthorPortraitUrl,
string Body,
string? AttachmentFileName,
string? AttachmentContentType,
long? AttachmentSizeBytes,
string? AttachmentBlobUrl,
DateTimeOffset CreatedAt);
public class GetCommentsHandler(
@@ -73,6 +77,10 @@ public class GetCommentsHandler(
comment.AuthorEmail,
authorPortraits.GetValueOrDefault(comment.AuthorUserId),
comment.Body,
comment.AttachmentFileName,
comment.AttachmentContentType,
comment.AttachmentSizeBytes,
comment.AttachmentBlobUrl,
comment.CreatedAt))
.ToList();