feat(core): Add endpoint DELETE /projects/:projectId/folders/:folderId (no-changelog) (#13516)

This commit is contained in:
Ricardo Espinoza
2025-02-27 16:47:07 -05:00
committed by GitHub
parent 6c266acced
commit 0c266b3060
21 changed files with 429 additions and 19 deletions

View File

@@ -159,7 +159,7 @@ export class WorkflowsController {
if (parentFolderId) {
try {
const parentFolder = await this.folderService.getFolderInProject(
const parentFolder = await this.folderService.findFolderInProjectOrFail(
parentFolderId,
project.id,
transactionManager,