From e020fe7d08a9310d96c17cebde384641235525a1 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 1 Sep 2025 14:47:22 +0300 Subject: [PATCH] Features: 1) Add `confirm_password` field to user serializer; Fixes: ; Extra: ; --- vibes_auth/serializers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vibes_auth/serializers.py b/vibes_auth/serializers.py index e481b196..9f6f59cb 100644 --- a/vibes_auth/serializers.py +++ b/vibes_auth/serializers.py @@ -63,6 +63,7 @@ class UserSerializer(ModelSerializer): "first_name", "last_name", "password", + "confirm_password", "phone_number", "is_subscribed", "modified",