summaryrefslogtreecommitdiffstats
path: root/forum/const.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-12-08 22:50:45 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-12-08 22:50:45 -0500
commit9655bd421022dd6488b21184cc9fd0242c6b345e (patch)
tree8d9e58419b50630adc537ac92907d04946edc925 /forum/const.py
parent932b13188b08871e4f541f46c1dbb4eca693adfa (diff)
downloadaskbot-9655bd421022dd6488b21184cc9fd0242c6b345e.tar.gz
askbot-9655bd421022dd6488b21184cc9fd0242c6b345e.tar.bz2
askbot-9655bd421022dd6488b21184cc9fd0242c6b345e.zip
added interesting and ignored tag selectors (works) and per-tag subscription (not tested yet)
Diffstat (limited to 'forum/const.py')
-rw-r--r--forum/const.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/forum/const.py b/forum/const.py
index 312dde26..91b6f5e5 100644
--- a/forum/const.py
+++ b/forum/const.py
@@ -87,3 +87,6 @@ CONST = {
'default_version' : _('initial version'),
'retagged' : _('retagged'),
}
+
+#how to filter questions by tags in email digests?
+TAG_EMAIL_FILTER_CHOICES = (('ignored', _('exclude ignored tags')),('interesting',_('allow only interesting tags')))