Hello I want to get unhashed password while fetching result from dataabse please anyone can help me
class SingleIST1(APIView): authentication_classes = [TokenAuthentication] # permission_classes = [IsAuthenticated] def get(selfs, request, cnic_no, format=None): # content = {'message': 202} snippets = Register.objects.filter(cnic_no=cnic_no) if snippets: serializer = RegisterSerializer(snippets, many=True) # serializer = ApplicationSerializer(snippets) return Response({ "status": 1, "application": serializer.data, }) else: return Response({ "status": 0, "Message": "Account Does Not Exist." }) class Meta: model = Register fields = ('id', 'first_name', 'mobile_no', 'province', 'city', 'email', 'cnic_issue_date','avatar','cnic_no','is_varified', 'type_of_users', 'password') -- You received this message because you are subscribed to the Google Groups "Django REST framework" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-rest-framework+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-rest-framework/20cafcd7-553a-4b16-ac3c-2fc405e33095n%40googlegroups.com.