aboutsummaryrefslogtreecommitdiffstats
path: root/config/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-20 19:47:15 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-20 19:47:15 +0000
commitb56df3b59558e790b1e9a7a4aab16fa4c798110c (patch)
treef0b2e5d192a95e1634df96a89f6c3b4d7dc46334 /config/urls.py
parent9ebc666f819897aac04e9bc529a39fb40ee7abfb (diff)
first passing test!
Diffstat (limited to 'config/urls.py')
-rw-r--r--config/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/urls.py b/config/urls.py
index 2e9f883..9fd5bbb 100644
--- a/config/urls.py
+++ b/config/urls.py
@@ -14,6 +14,7 @@ urlpatterns = [
path(settings.ADMIN_URL, admin.site.urls),
# User management
path("users/", include("ctrack.users.urls", namespace="users")),
+ path("organisations/", include("ctrack.organisations.urls", namespace="organisations")),
path("accounts/", include("allauth.urls")),
# Your stuff: custom urls includes go here
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)