aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-27 20:25:04 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-27 20:25:04 +0000
commitdfc5ede55ee0bb70be9f5317324409d5f0eb763a (patch)
treed245e6fdfb5cfeda72a2e533988f0315fab47073 /ctrack/caf/urls.py
parentd0ac61da601f46e383ea865b784d347229ac41dc (diff)
added register and caf applications
Diffstat (limited to '')
-rw-r--r--ctrack/caf/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py
new file mode 100644
index 0000000..e819ef7
--- /dev/null
+++ b/ctrack/caf/urls.py
@@ -0,0 +1,9 @@
+from django.urls import path
+
+from ctrack.caf.views import CreateCAF
+
+app_name = "caf"
+
+urlpatterns = [
+ path("", view=CreateCAF.as_view(), name="create")
+]