summaryrefslogtreecommitdiffstats
path: root/askbot/views
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-03 19:11:01 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-03 19:11:01 -0400
commit8e57f310d1da605c31d30d7392c26deab73f2619 (patch)
tree08d9fa0aae37360fc0290b42d89333b79ecbec7f /askbot/views
parent7da87a124353c9fea3bc26d50f54bcd677e5c112 (diff)
downloadaskbot-8e57f310d1da605c31d30d7392c26deab73f2619.tar.gz
askbot-8e57f310d1da605c31d30d7392c26deab73f2619.tar.bz2
askbot-8e57f310d1da605c31d30d7392c26deab73f2619.zip
added support to receive email updates on interesting and exclude ignored wildcards
Diffstat (limited to 'askbot/views')
-rw-r--r--askbot/views/commands.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/askbot/views/commands.py b/askbot/views/commands.py
index 2801384f..8d16c35f 100644
--- a/askbot/views/commands.py
+++ b/askbot/views/commands.py
@@ -393,6 +393,7 @@ def get_tag_list(request):
def subscribe_for_tags(request):
"""process subscription of users by tags"""
+ #todo - use special separator to split tags
tag_names = request.REQUEST.get('tags','').strip().split()
pure_tag_names, wildcards = forms.clean_marked_tagnames(tag_names)
if request.user.is_authenticated():