STripe Paymen and PK payemtns and many othe rbacekd and froentened issues

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-07 05:51:36 +00:00
parent 87d1662a18
commit 0386d4bf33
24 changed files with 1079 additions and 174 deletions

View File

@@ -26,6 +26,7 @@ from igny8_core.auth.views import (
industrysector_csv_template, industrysector_csv_import,
seedkeyword_csv_template, seedkeyword_csv_import
)
from igny8_core.utils.geo_views import GeoDetectView
urlpatterns = [
# CSV Import/Export for admin - MUST come before admin/ to avoid being caught by admin.site.urls
@@ -49,6 +50,7 @@ urlpatterns = [
path('api/v1/optimizer/', include('igny8_core.modules.optimizer.urls')), # Optimizer endpoints
path('api/v1/publisher/', include('igny8_core.modules.publisher.urls')), # Publisher endpoints
path('api/v1/integration/', include('igny8_core.modules.integration.urls')), # Integration endpoints
path('api/v1/geo/detect/', GeoDetectView.as_view(), name='geo-detect'), # Geo detection for signup routing
# OpenAPI Schema and Documentation
path('api/schema/', SpectacularAPIView.as_view(), name='schema'),
path('api/docs/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'),