summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
commite215c1d15b049b04f7a2497c07d3c9a3f380638d (patch)
tree65257c6d9b55810f39a641edc1bb6dec2d474393 /urls.py
parent57033196f904477631c397fab50681f0d1aa7834 (diff)
downloadaskbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.gz
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.bz2
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.zip
envelope turns on correctly for responses, but not for mentions yet, added urls for cache monitoring
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 2a136cfb..062e24b6 100644
--- a/urls.py
+++ b/urls.py
@@ -10,6 +10,7 @@ admin.autodiscover()
urlpatterns = patterns('',
(r'^%s' % settings.FORUM_SCRIPT_ALIAS, include('forum.urls')),
(r'^admin/', include(admin.site.urls)),
+ (r'^cache/', include('keyedcache.urls')),
(r'^settings/', include('livesettings.urls')),
)