diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-04-21 14:32:05 +0200 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-04-22 10:51:12 +0200 |
commit | 2531887d45e5469fec6171fbd0c63058ded33136 (patch) | |
tree | d70ef91ffeb819a9dde302c06a98596f9e88ad52 /pyaggr3g470r/views/api/article.py | |
parent | better title handling (diff) | |
download | newspipe-2531887d45e5469fec6171fbd0c63058ded33136.tar.gz newspipe-2531887d45e5469fec6171fbd0c63058ded33136.tar.bz2 newspipe-2531887d45e5469fec6171fbd0c63058ded33136.zip |
making admin able to update all other users feed
Diffstat (limited to 'pyaggr3g470r/views/api/article.py')
-rw-r--r-- | pyaggr3g470r/views/api/article.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyaggr3g470r/views/api/article.py b/pyaggr3g470r/views/api/article.py index c3ec2d34..516eef8f 100644 --- a/pyaggr3g470r/views/api/article.py +++ b/pyaggr3g470r/views/api/article.py @@ -11,7 +11,8 @@ from pyaggr3g470r.views.api.common import PyAggAbstractResource,\ PyAggResourceMulti -ARTICLE_ATTRS = {'feed_id': {'type': str}, +ARTICLE_ATTRS = {'user_id': {'type': int}, + 'feed_id': {'type': int}, 'entry_id': {'type': str}, 'link': {'type': str}, 'title': {'type': str}, |