Merge dev into master #29

Merged
jjminguez merged 2 commits from dev into master 2026-04-16 13:51:33 +00:00
4 changed files with 2 additions and 2 deletions
Showing only changes of commit 27ccce862d - Show all commits

View File

@@ -1,5 +1,5 @@
from django.http import JsonResponse
from .actions import Admin
from .acciones import Admin
import logging
import json
from django.views.decorators.csrf import csrf_exempt

View File

@@ -3,7 +3,7 @@ from rest_framework.permissions import IsAuthenticated
from rest_framework_simplejwt.authentication import JWTAuthentication
from django.http import JsonResponse
from apps.backend_admin.models import Log
from .actions import getData
from .acciones import getData
from django.utils import timezone # Esta es la forma correcta
class PromocionObtener(APIView):
authentication_classes = [JWTAuthentication]