aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-24 14:02:34 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-24 14:02:34 +0200
commit82c2e1d3471cc48ac0d15630a62c388b367dec91 (patch)
tree9e4bf2e536f299ed45cdb4f3f6680112db5d4591 /src
parentno need to specify an equality (diff)
downloadnewspipe-82c2e1d3471cc48ac0d15630a62c388b367dec91.tar.gz
newspipe-82c2e1d3471cc48ac0d15630a62c388b367dec91.tar.bz2
newspipe-82c2e1d3471cc48ac0d15630a62c388b367dec91.zip
add a way to edit the visibity of a feed via the react interface
Diffstat (limited to 'src')
-rw-r--r--src/web/js/components/RightPanel.react.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js
index eeb2c149..f424064a 100644
--- a/src/web/js/components/RightPanel.react.js
+++ b/src/web/js/components/RightPanel.react.js
@@ -188,6 +188,7 @@ var Feed = React.createClass({
{'title': 'Feed link', 'type': 'link', 'key': 'link'},
{'title': 'Site link', 'type': 'link', 'key': 'site_link'},
{'title': 'Enabled', 'type': 'bool', 'key': 'enabled'},
+ {'title': 'Private', 'type': 'bool', 'key': 'private'},
{'title': 'Filters', 'type': 'ignore', 'key': 'filters'},
{'title': 'Category', 'type': 'ignore', 'key': 'category_id'},
],
bgstack15