user details page

This commit is contained in:
2025-05-14 16:48:52 +08:00
parent cbac071dd2
commit 3b7d52a7a8
20 changed files with 450 additions and 64 deletions

View File

@@ -100,3 +100,11 @@ export interface Comment {
created_at: string;
user: User;
}
export interface CommentWithResource {
id: number;
content: string;
created_at: string;
user: User;
resource: Resource;
}