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:
parent
a890f0b707
commit
c99016fd2f
2 changed files with 2 additions and 2 deletions
|
@ -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"/>
|
||||
|
|
|
@ -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()}`);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue