feat: init dash app

wip-payments
Aravinth Manivannan 2022-06-17 16:03:05 +05:30
parent 92a50b8a7a
commit 1a0ca0117a
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
2 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,7 @@ INSTALLED_APPS = [
"django.contrib.messages",
"django.contrib.staticfiles",
"accounts",
"dash",
]
MIDDLEWARE = [

View File

@ -18,5 +18,6 @@ from django.urls import path, include
urlpatterns = [
path("admin/", admin.site.urls),
path("dash/", include("dash.urls")),
path("", include("accounts.urls")),
]