refactor(v2): isolate legacy provider stack and prune obsolete tests
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
from django.contrib import admin
|
||||
from django.conf import settings
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
@ -11,6 +12,8 @@ urlpatterns = [
|
||||
path("teams/", include("apps.teams.urls")),
|
||||
path("stats/", include("apps.stats.urls")),
|
||||
path("scouting/", include("apps.scouting.urls")),
|
||||
path("providers/", include("apps.providers.urls")),
|
||||
path("ingestion/", include("apps.ingestion.urls")),
|
||||
]
|
||||
|
||||
if settings.LEGACY_PROVIDER_STACK_ENABLED:
|
||||
urlpatterns.append(path("providers/", include("apps.providers.urls")))
|
||||
|
||||
Reference in New Issue
Block a user