|
|
|
|
@ -17,6 +17,7 @@ from django.contrib import admin |
|
|
|
|
from django.urls import include, path |
|
|
|
|
from django.conf import settings |
|
|
|
|
from django.conf.urls.static import static |
|
|
|
|
from tournaments.admin_utils import download_french_padel_rankings, debug_tools_page, test_player_details_apis, explore_fft_api_endpoints, get_player_license_info, bulk_license_lookup, search_player_by_name, enrich_rankings_with_licenses |
|
|
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
|
|
|
|
|
|
|
@ -24,6 +25,14 @@ urlpatterns = [ |
|
|
|
|
path('shop/', include('shop.urls')), |
|
|
|
|
# path("crm/", include("crm.urls")), |
|
|
|
|
path('roads/', include("api.urls")), |
|
|
|
|
path('kingdom/debug/', debug_tools_page, name='debug_tools'), |
|
|
|
|
path('kingdom/debug/enrich-rankings-with-licenses/', enrich_rankings_with_licenses, name='enrich_rankings_with_licenses'), |
|
|
|
|
path('kingdom/debug/search-player-by-name/', search_player_by_name, name='search_player_by_name'), |
|
|
|
|
path('kingdom/debug/download-french-padel-rankings/', download_french_padel_rankings, name='download_french_padel_rankings'), |
|
|
|
|
path('kingdom/debug/test-player-apis/', test_player_details_apis, name='test_player_apis'), |
|
|
|
|
path('kingdom/debug/player-license-lookup/', get_player_license_info, name='player_license_lookup'), |
|
|
|
|
path('kingdom/debug/bulk-license-lookup/', bulk_license_lookup, name='bulk_license_lookup'), |
|
|
|
|
path('kingdom/debug/explore-api-endpoints/', explore_fft_api_endpoints, name='explore_api_endpoints'), |
|
|
|
|
path('kingdom/', admin.site.urls), |
|
|
|
|
path('api-auth/', include('rest_framework.urls')), |
|
|
|
|
path('dj-auth/', include('django.contrib.auth.urls')), |
|
|
|
|
|