0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Limited post export size to 1000 posts

refs https://github.com/TryGhost/Team/issues/2936

We want to make sure that downloads complete in a reasonable number of
time, and the simplest way to do that is to cap the size of the file.
This commit is contained in:
Fabien "egg" O'Carroll 2023-04-07 13:24:59 +07:00
parent a890f0b707
commit c99016fd2f
2 changed files with 2 additions and 2 deletions

View file

@ -107,7 +107,7 @@
<div>
<h4 class="gh-expandable-title">Export post analytics</h4>
<p class="gh-expandable-description">
Download a CSV file of all your post data for easy analysis in one place
Download a CSV file of your last 1000 posts data for easy analysis in one place
</p>
</div>
<GhTaskButton @buttonText="Export" @successText="Exported" @task={{this.exportPostsTask}} @class="gh-btn gh-btn-icon"/>

View file

@ -21,7 +21,7 @@ export default class Analytics extends Component {
*exportPostsTask() {
let exportUrl = ghostPaths().url.api('posts/export');
let downloadParams = new URLSearchParams();
downloadParams.set('limit', 'all');
downloadParams.set('limit', 1000);
yield this.utils.fetchAndDownloadFile(`${exportUrl}?${downloadParams.toString()}`);