From 5c54575f291d725bb37360c8296b0a114cd5fc0c Mon Sep 17 00:00:00 2001 From: Marnanel Thurman Date: Wed, 29 Apr 2020 20:32:51 +0100 Subject: [PATCH] Add busby_1st to the master URLs --- kepi/kepi/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kepi/kepi/urls.py b/kepi/kepi/urls.py index 5646b57..0edc01c 100644 --- a/kepi/kepi/urls.py +++ b/kepi/kepi/urls.py @@ -3,6 +3,7 @@ from django.urls import path, re_path, include from django.conf.urls.static import static from django.contrib.auth import views as auth_views import oauth2_provider.views as oauth2_views +import kepi.busby_1st.urls import kepi.bowler_pub.urls import kepi.trilby_api.urls from kepi.trilby_api.views import fix_oauth2_redirects @@ -31,6 +32,7 @@ urlpatterns = [ # kepi's own stuff # path('', kepi.tophat_ui.views.FrontPageView.as_view()), # or something + path(r'', include(kepi.busby_1st.urls)), path(r'', include(kepi.bowler_pub.urls)), path(r'', include(kepi.trilby_api.urls)), ]