Skip to content

Commit

Permalink
Define ownerLabel & lastModifiedByLabel in ElementAttributes (#636)
Browse files Browse the repository at this point in the history
Signed-off-by: sBouzols <sylvain.bouzols@gmail.com>
  • Loading branch information
sBouzols authored Nov 13, 2024
1 parent d77f5f8 commit 3e8a8e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ export type ElementAttributes = {
accessRights: {
isPrivate: boolean;
};
owner: string;
owner: string; // id
ownerLabel?: string; // enrich with user identity server
subdirectoriesCount: number;
creationDate: string;
lastModificationDate: string;
lastModifiedBy: string;
lastModifiedBy: string; // id
lastModifiedByLabel?: string; // enrich with user identity server
children: any[];
parentUuid: null | UUID;
specificMetadata: Record<string, object>;
Expand Down

0 comments on commit 3e8a8e9

Please sign in to comment.