feat(ui): moves folder rendering from the client to the server (#12710)

This commit is contained in:
Jarrod Flesch
2025-06-10 11:56:28 -04:00
committed by GitHub
parent 9d2817e647
commit a43d1a685f
29 changed files with 1073 additions and 1373 deletions

View File

@@ -201,7 +201,7 @@ export interface FolderInterface {
hasNextPage?: boolean;
totalDocs?: number;
};
belongsToCollections?: ('posts' | 'media' | 'drafts' | 'autosave' | 'all')[] | null;
folderSlug?: string | null;
updatedAt: string;
createdAt: string;
}
@@ -419,7 +419,7 @@ export interface PayloadFoldersSelect<T extends boolean = true> {
name?: T;
folder?: T;
documentsAndFolders?: T;
belongsToCollections?: T;
folderSlug?: T;
updatedAt?: T;
createdAt?: T;
}