summaryrefslogtreecommitdiff
path: root/soc/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'soc/urls.py')
-rw-r--r--soc/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/soc/urls.py b/soc/urls.py
index 5e14fd8..db3954d 100644
--- a/soc/urls.py
+++ b/soc/urls.py
@@ -1,4 +1,6 @@
from django.conf.urls import patterns, include, url
+from dajaxice.core import dajaxice_autodiscover, dajaxice_config
+dajaxice_autodiscover()
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
@@ -15,4 +17,7 @@ urlpatterns = patterns('',
# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
+
+ # Dajaxice urls
+ url(dajaxice_config.dajaxice_url, include('dajaxice.urls')),
)