feat(core): Add endpoint POST /projects/:projectId/folders (no-changelog) (#13446)

This commit is contained in:
Ricardo Espinoza
2025-02-24 09:54:47 -05:00
committed by GitHub
parent 0eae14e27a
commit c850cca648
14 changed files with 380 additions and 4 deletions

View File

@@ -43,7 +43,8 @@ type EndpointGroup =
| 'dynamic-node-parameters'
| 'apiKeys'
| 'evaluation'
| 'ai';
| 'ai'
| 'folder';
export interface SetupProps {
endpointGroups?: EndpointGroup[];

View File

@@ -288,6 +288,9 @@ export const setupTestServer = ({
case 'ai':
await import('@/controllers/ai.controller');
case 'folder':
await import('@/controllers/folder.controller');
}
}