diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-07-03 11:49:28 +0200 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-07-03 15:01:23 +0200 |
commit | 1513cd97911fdf4500ae17f7e8ee6d90ac4bac84 (patch) | |
tree | b66771229ecbffdf3e784859b33dcf65aaf0d603 /pyaggr3g470r/views/api | |
parent | Minor improvements to the edit feed forms. (diff) | |
download | newspipe-1513cd97911fdf4500ae17f7e8ee6d90ac4bac84.tar.gz newspipe-1513cd97911fdf4500ae17f7e8ee6d90ac4bac84.tar.bz2 newspipe-1513cd97911fdf4500ae17f7e8ee6d90ac4bac84.zip |
the icon feature
* icon of feeds is now an url retrieved from the feed or the site link
* the icon is displayed in the home page making it visually easier to read
* the http crawler is in charge of keeping it up to date
Diffstat (limited to 'pyaggr3g470r/views/api')
-rw-r--r-- | pyaggr3g470r/views/api/feed.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyaggr3g470r/views/api/feed.py b/pyaggr3g470r/views/api/feed.py index 68f3a12c..f9060263 100644 --- a/pyaggr3g470r/views/api/feed.py +++ b/pyaggr3g470r/views/api/feed.py @@ -19,6 +19,7 @@ FEED_ATTRS = {'title': {'type': str}, 'site_link': {'type': str}, 'enabled': {'type': bool, 'default': True}, 'etag': {'type': str, 'default': ''}, + 'icon': {'type': str, 'default': ''}, 'last_modified': {'type': str}, 'last_retrieved': {'type': str}, 'last_error': {'type': str}, |