phase2: add modular apps, auth scaffolding, and base template routing
This commit is contained in:
9
apps/ingestion/urls.py
Normal file
9
apps/ingestion/urls.py
Normal file
@ -0,0 +1,9 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import IngestionHomeView
|
||||
|
||||
app_name = "ingestion"
|
||||
|
||||
urlpatterns = [
|
||||
path("", IngestionHomeView.as_view(), name="index"),
|
||||
]
|
||||
Reference in New Issue
Block a user