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
+3 -2
View File
@@ -1,10 +1,11 @@
import os
from django.conf import settings
from django.core.files.uploadedfile import SimpleUploadedFile
from django.test import TestCase
from django.urls import reverse
from django.conf import settings
from web.models import WebSettings
from django.core.files.uploadedfile import SimpleUploadedFile
class TestManifest(TestCase):
+1 -1
View File
@@ -7,8 +7,8 @@ from django.urls import reverse
from shop.models import (
Cart,
CartItem,
Order,
CustomerAddress,
Order,
ShippingMethod,
ShopSettings,
)