diff options
| author | 2019-11-04 17:45:15 +0100 | |
|---|---|---|
| committer | 2019-11-04 17:45:15 +0100 | |
| commit | 7819a43197d34ef7a6c5626e9e48d7db075c37c9 (patch) | |
| tree | c53735a350f01292642125fcb8686e2121afc38e /opml.default.xml | |
| parent | 67fc72fb618558f352acc7e098163d05294a6a66 (diff) | |
Default or custom OPML (#2627)
* Default or custom OPML
Fix https://github.com/FreshRSS/FreshRSS/issues/2075
Replaces https://github.com/FreshRSS/FreshRSS/pull/2515
https://github.com/FreshRSS/FreshRSS/issues/2514
Uses the local ./data/opml.xml if it exists, otherwise
./opml.default.xml
* Better message
* Move to controller
Diffstat (limited to 'opml.default.xml')
| -rw-r--r-- | opml.default.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/opml.default.xml b/opml.default.xml new file mode 100644 index 000000000..5814869b5 --- /dev/null +++ b/opml.default.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Configure the default feeds to which users will automatically be subscribed. + Do not edit this file but instead create your own ./data/opml.xml +--> +<opml version="2.0"> + <head> + <title>FreshRSS default OPML</title> + <dateCreated>Sat, 02 Nov 2019 12:00:00</dateCreated> + </head> + <body> + <outline text="FreshRSS releases" type="rss" xmlUrl="https://github.com/FreshRSS/FreshRSS/releases.atom" htmlUrl="https://github.com/FreshRSS/FreshRSS/" description="FreshRSS releases @ GitHub"/> + </body> +</opml> |
