Add busby_1st to the master URLs

trilby-heavy
Marnanel Thurman 2020-04-29 20:32:51 +01:00
rodzic f610465f9b
commit 5c54575f29
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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)),
]