1👍
I don’t think you need ExtensibleModelSerializer
. Set the field to write_only
:
password_confirmation = serializers.CharField(write_only=True, ...)
Source:stackexchange.com
1👍
I don’t think you need ExtensibleModelSerializer
. Set the field to write_only
:
password_confirmation = serializers.CharField(write_only=True, ...)