diff options
Diffstat (limited to 'module/web/urls.py')
-rw-r--r-- | module/web/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/module/web/urls.py b/module/web/urls.py index 1392b827a..b753890ee 100644 --- a/module/web/urls.py +++ b/module/web/urls.py @@ -15,6 +15,9 @@ urlpatterns = patterns('', (r'^admin/', include(admin.site.urls)), # django 1.0 not working (r'^json/', include('ajax.urls')), + (r'^flashgot$', 'cnl.views.flashgot'), + (r'^flash(got)?/', include('cnl.urls')), + (r'^crossdomain.xml$', 'cnl.views.crossdomain'), (r'^favicon\.ico$', 'django.views.generic.simple.redirect_to', {'url': '/media/img/favicon.ico'}), (r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), |