fix
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good

This commit is contained in:
minguezsanzjuanjose
2026-04-14 01:00:37 +02:00
parent 3da81a9495
commit 9dd97b34f2
16 changed files with 339 additions and 137 deletions

View File

@@ -1,8 +1,6 @@
from django.urls import path
from .views import get_promocion_view, status_view
from .views import PromocionObtener
urlpatterns = [
# Capa 1: Definición del endpoint
path('obtener/', get_promocion_view, name='get_promocion'),
path('obtener/', PromocionObtener.as_view(), name='obtener_promocion'),
]