Add root URL redirect to migration home

This commit is contained in:
shamoon
2026-01-23 21:31:51 -08:00
parent af9d75dfcf
commit 770dc02833

View File

@@ -11,6 +11,8 @@ urlpatterns = [
path("accounts/", include("allauth.urls")), path("accounts/", include("allauth.urls")),
path("migration/", views.migration_home, name="migration_home"), path("migration/", views.migration_home, name="migration_home"),
path("migration/transform/stream", views.transform_stream, name="transform_stream"), path("migration/transform/stream", views.transform_stream, name="transform_stream"),
# redirect root to migration home
path("", views.migration_home, name="migration_home"),
] ]
if settings.DEBUG: if settings.DEBUG: