mirror of
https://github.com/lingble/twenty.git
synced 2025-11-11 18:56:17 +00:00
Fix main post merge
This commit is contained in:
@@ -15,9 +15,12 @@ export type Activity = {
|
|||||||
type: ActivityType;
|
type: ActivityType;
|
||||||
title: string;
|
title: string;
|
||||||
body: string;
|
body: string;
|
||||||
author: WorkspaceMember;
|
author: Pick<WorkspaceMember, 'id' | 'firstName' | 'lastName' | 'avatarUrl'>;
|
||||||
authorId: string;
|
authorId: string;
|
||||||
assignee: WorkspaceMember | null;
|
assignee: Pick<
|
||||||
|
WorkspaceMember,
|
||||||
|
'id' | 'firstName' | 'lastName' | 'avatarUrl'
|
||||||
|
> | null;
|
||||||
assigneeId: string | null;
|
assigneeId: string | null;
|
||||||
comments: Comment[];
|
comments: Comment[];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ export type Comment = {
|
|||||||
body: string;
|
body: string;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
activityId: string;
|
activityId: string;
|
||||||
author: WorkspaceMember;
|
author: Pick<WorkspaceMember, 'id' | 'firstName' | 'lastName' | 'avatarUrl'>;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user