Feature: [saved export] Edit and delete saved exports

This commit is contained in:
2022-11-08 19:24:22 +01:00
parent 79e9906a05
commit 43791badd5
7 changed files with 175 additions and 7 deletions

View File

@@ -170,7 +170,11 @@ class ExportController extends AbstractController
return $this->redirectToRoute(
'chill_main_export_download',
['alias' => $savedExport->getExportAlias(), 'key' => $key, 'prevent_save' => true]
[
'alias' => $savedExport->getExportAlias(),
'key' => $key, 'prevent_save' => true,
'returnPath' => $this->generateUrl('chill_main_export_saved_list_my'),
]
);
}