summaryrefslogtreecommitdiffstats
path: root/askbot/setup_templates
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-25 09:04:59 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-25 23:58:06 -0600
commit81b4b2d799b9e5c5d67d6a8bd7838b10c4ad34a8 (patch)
tree3d4109b9fe45238cf6cd8049146e09d24a61e012 /askbot/setup_templates
parent39c4bb7e8192d28d146f4ba694e0f60d674f208b (diff)
downloadaskbot-81b4b2d799b9e5c5d67d6a8bd7838b10c4ad34a8.tar.gz
askbot-81b4b2d799b9e5c5d67d6a8bd7838b10c4ad34a8.tar.bz2
askbot-81b4b2d799b9e5c5d67d6a8bd7838b10c4ad34a8.zip
Added initial work for limit edit notification
Diffstat (limited to 'askbot/setup_templates')
-rw-r--r--askbot/setup_templates/settings.py3
-rw-r--r--askbot/setup_templates/settings.py.mustache3
2 files changed, 6 insertions, 0 deletions
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index 8577281c..3d24fc5e 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -260,3 +260,6 @@ TINYMCE_DEFAULT_CONFIG = {
'theme_advanced_statusbar_location': 'bottom',
'height': '250'
}
+
+#delayed notifications, time in seconds, 15 mins by default
+NOTIFICATION_DELAY_TIME = 60 * 15
diff --git a/askbot/setup_templates/settings.py.mustache b/askbot/setup_templates/settings.py.mustache
index 6a40969d..a800edec 100644
--- a/askbot/setup_templates/settings.py.mustache
+++ b/askbot/setup_templates/settings.py.mustache
@@ -262,3 +262,6 @@ TINYMCE_DEFAULT_CONFIG = {
'width': '723',
'height': '250'
}
+
+#delayed notifications, time in seconds, 15 mins by default
+NOTIFICATION_DELAY_TIME = 60 * 15