aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index cc5c7d82..b68c8969 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -405,6 +405,17 @@ class pyAggr3g470r(object):
like.exposed = True
@auth.require()
+ def subscriptions(self):
+ """
+ List all active e-mail notifications.
+ """
+ feeds = self.mongo.get_all_feeds()
+ tmpl = lookup.get_template("subscriptions.html")
+ return tmpl.render(feeds=feeds)
+
+ subscriptions.exposed = True
+
+ @auth.require()
def favorites(self):
"""
List of favorites articles
bgstack15