feat: reset password working

This commit is contained in:
2025-01-16 23:32:03 +01:00
parent 6c60df2da0
commit 80bc3797ff
20 changed files with 932 additions and 416 deletions
@@ -1,7 +1,8 @@
# Generated by Django 5.1.4 on 2025-01-16 17:00
import django.db.models.deletion
from decimal import Decimal
import django.db.models.deletion
from django.db import migrations, models
+1 -1
View File
@@ -14,6 +14,7 @@ from django.utils.text import gettext_lazy as _
from shop.exceptions import RedsysPaymentException, RedsysValidationException
from shop.models import (
Cart,
CartItem,
Order,
OrderLine,
Payment,
@@ -21,7 +22,6 @@ from shop.models import (
ProductBatch,
ProductPrice,
ShippingMethod,
CartItem,
)
from shop.settings import ERROR_CODES
from shop.signals import clear_cart
+1 -1
View File
@@ -3,7 +3,7 @@ from django.shortcuts import get_object_or_404
from django.views.decorators.csrf import csrf_exempt
from shop.models import Order
from shop.utils import validate_payment_for_order, add_payment_to_order
from shop.utils import add_payment_to_order, validate_payment_for_order
@csrf_exempt