mirror of
				https://github.com/Tivix/django-rest-auth.git
				synced 2025-10-31 15:57:34 +03:00 
			
		
		
		
	Update serializers.py
This commit is contained in:
		
							parent
							
								
									95fafe5e0f
								
							
						
					
					
						commit
						fd382d18f9
					
				|  | @ -1,13 +1,14 @@ | ||||||
| from django.contrib.auth import get_user_model, authenticate | from django.contrib.auth import get_user_model, authenticate | ||||||
| from django.conf import settings | from django.conf import settings | ||||||
| from django.contrib.auth.forms import PasswordResetForm, SetPasswordForm | from django.contrib.auth.forms import PasswordResetForm, SetPasswordForm | ||||||
| from django.contrib.auth.tokens import default_token_generator |  | ||||||
| from django.utils.http import urlsafe_base64_decode as uid_decoder | from django.utils.http import urlsafe_base64_decode as uid_decoder | ||||||
| from django.utils.translation import ugettext_lazy as _ | from django.utils.translation import ugettext_lazy as _ | ||||||
| from django.utils.encoding import force_text | from django.utils.encoding import force_text | ||||||
| 
 | 
 | ||||||
| from rest_framework import serializers, exceptions | from rest_framework import serializers, exceptions | ||||||
| from rest_framework.exceptions import ValidationError | from rest_framework.exceptions import ValidationError | ||||||
|  | from allauth.account.forms import default_token_generator | ||||||
|  | from allauth.account.utils import url_str_to_user_pk | ||||||
| 
 | 
 | ||||||
| from .models import TokenModel | from .models import TokenModel | ||||||
| from .utils import import_callable | from .utils import import_callable | ||||||
|  | @ -202,7 +203,7 @@ class PasswordResetConfirmSerializer(serializers.Serializer): | ||||||
| 
 | 
 | ||||||
|         # Decode the uidb64 to uid to get User object |         # Decode the uidb64 to uid to get User object | ||||||
|         try: |         try: | ||||||
|             uid = force_text(uid_decoder(attrs['uid'])) |             uid = url_str_to_user_pk(attrs['uid']) | ||||||
|             self.user = UserModel._default_manager.get(pk=uid) |             self.user = UserModel._default_manager.get(pk=uid) | ||||||
|         except (TypeError, ValueError, OverflowError, UserModel.DoesNotExist): |         except (TypeError, ValueError, OverflowError, UserModel.DoesNotExist): | ||||||
|             raise ValidationError({'uid': ['Invalid value']}) |             raise ValidationError({'uid': ['Invalid value']}) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user