From 534bf3ab142711a31e5dd37831605098ffbb13ba Mon Sep 17 00:00:00 2001 From: emile Date: Fri, 5 Apr 2024 22:41:28 +0300 Subject: [PATCH] ss --- osinaweb/osinacore/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osinaweb/osinacore/api/views.py b/osinaweb/osinacore/api/views.py index 8e1cf3a3..70f42962 100644 --- a/osinaweb/osinacore/api/views.py +++ b/osinaweb/osinacore/api/views.py @@ -37,7 +37,7 @@ def authenticate_customer(request): except User.DoesNotExist: return JsonResponse({'success': False, 'error': 'User with this email does not exist'}) - user = authenticate(request, email=email) + user = authenticate(request, email=email, password='ibiye4700') if user is not None: login(request, user)