aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config.default.php
diff options
context:
space:
mode:
authorMarien Fressinaud <dev@marienfressinaud.fr>2019-09-11 18:40:17 +0200
committerAlexandre Alapetite <alexandre@alapetite.fr>2019-09-11 18:40:17 +0200
commit7b4cd3abae88bf1b8a04642489b68a741e4d2c6a (patch)
treed9c46df4256d27f7925703cbd8476d6d61e8c817 /config.default.php
parent84f9311fd53f5fa58ae55986ece9bfa7dac455c1 (diff)
downloadfreshrss-7b4cd3abae88bf1b8a04642489b68a741e4d2c6a.tar.gz
freshrss-7b4cd3abae88bf1b8a04642489b68a741e4d2c6a.zip
add: Allow admins to configure default feeds (#2515)
* Homogenize SQL_INSERT_FEEDS across database types * Extract default feeds into system configuration * Adapt default feeds init during installation
Diffstat (limited to 'config.default.php')
-rw-r--r--config.default.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php
index 9d74940c1..a38a9372a 100644
--- a/config.default.php
+++ b/config.default.php
@@ -151,6 +151,16 @@ return array(
),
+ # Configure the default feeds to which users will automatically be subscribed.
+ 'default_feeds' => array(
+ array(
+ 'url' => 'https://github.com/FreshRSS/FreshRSS/releases.atom',
+ 'name' => 'FreshRSS releases',
+ 'website' => 'https://github.com/FreshRSS/FreshRSS/',
+ 'description' => 'FreshRSS releases @ GitHub',
+ ),
+ ),
+
# Configuration to send emails. Be aware that PHP < 5.5 are not supported.
# These options are basically a mapping of the PHPMailer class attributes
# from the PHPMailer library.