aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/urls.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/register/urls.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/ctrack/register/urls.py b/ctrack/register/urls.py
index 567ef2f..4d9c219 100644
--- a/ctrack/register/urls.py
+++ b/ctrack/register/urls.py
@@ -1,3 +1,11 @@
-#from django.urls import path
+from django.urls import path
+
+from ctrack.register.views import EngagementEventCreate
app_name = "register"
+
+urlpatterns = [
+ path(
+ "engagement-event/create/", view=EngagementEventCreate.as_view(), name="create"
+ ),
+]