main #3

Merged
p.motsch merged 4 commits from main into int 2026-05-27 21:18:07 +00:00
Showing only changes of commit 3e2c07a776 - Show all commits

View file

@ -522,7 +522,10 @@ def getMigrationExportStream(
return StreamingResponse(
streamExportGenerator(dbList, instanceLabel),
media_type="application/json",
headers={"Content-Disposition": f'attachment; filename="{filename}"'},
headers={
"Content-Disposition": f'attachment; filename="{filename}"',
"X-Export-Databases": ",".join(dbList),
},
)