1def perform_update(self, serializer):
2 # Save with the new value for the target model fields
3 user = self.request.user
4 userid = str(user.id)
5 serializer.save(stu_enrolled_classes=userid)
6# The above def is in viewset and you can specify what field else can be edited in the API "PUT",
7# Here We just set the stu_enrolled_classes field with is relation to the user to be the current user that send the "PUT" request.