diff options
| author | 2016-09-11 15:06:33 +0200 | |
|---|---|---|
| committer | 2016-09-11 15:06:33 +0200 | |
| commit | 2a5aa34ad2796df00fa09de41361c20764ccdfa8 (patch) | |
| tree | 8c933ff84cba91301e3dd7cb6a19015589194b6d /data/users | |
| parent | c3589cac2d41501af1bd916c4689cf1ea4b58038 (diff) | |
Better control of number of entries per page or RSS feed
https://github.com/FreshRSS/FreshRSS/issues/1249
* Since X hours: `https://freshrss.example/i/?a=rss&hours=3`
* Explicit number: `https://freshrss.example/i/?a=rss&nb=10`
* Limited by `min_posts_per_rss` and `max_posts_per_rss` in user config
Diffstat (limited to 'data/users')
| -rw-r--r-- | data/users/_/config.default.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/users/_/config.default.php b/data/users/_/config.default.php index 4a3403453..2c56d5f45 100644 --- a/data/users/_/config.default.php +++ b/data/users/_/config.default.php @@ -9,6 +9,9 @@ return array ( 'passwordHash' => '', 'apiPasswordHash' => '', 'posts_per_page' => 20, + 'since_hours_posts_per_rss' => 168, + 'min_posts_per_rss' => 2, + 'max_posts_per_rss' => 400, 'view_mode' => 'normal', 'default_view' => 'adaptive', 'default_state' => FreshRSS_Entry::STATE_NOT_READ, |
