summaryrefslogtreecommitdiffstats
path: root/module/web/ajax/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/ajax/urls.py')
-rw-r--r--module/web/ajax/urls.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/module/web/ajax/urls.py b/module/web/ajax/urls.py
index e69de29bb..0db240578 100644
--- a/module/web/ajax/urls.py
+++ b/module/web/ajax/urls.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from django.conf.urls.defaults import *
+from django.conf import settings
+
+
+urlpatterns = patterns('ajax',
+ # Example:
+ # (r'^pyload/', include('pyload.foo.urls')),
+
+ # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
+ # to INSTALLED_APPS to enable admin documentation:
+ # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+ # Uncomment the next line to enable the admin:
+ (r'^add_package$', 'views.add_package'),
+ (r'^status$', 'views.status'),
+ (r'^links$', 'views.links'),
+ (r'^queue$', 'views.queue'),
+ ) \ No newline at end of file