diff options
author | Marien Fressinaud <dev@marienfressinaud.fr> | 2019-09-11 18:40:17 +0200 |
---|---|---|
committer | Alexandre Alapetite <alexandre@alapetite.fr> | 2019-09-11 18:40:17 +0200 |
commit | 7b4cd3abae88bf1b8a04642489b68a741e4d2c6a (patch) | |
tree | d9c46df4256d27f7925703cbd8476d6d61e8c817 /config.default.php | |
parent | 84f9311fd53f5fa58ae55986ece9bfa7dac455c1 (diff) | |
download | freshrss-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.php | 10 |
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. |