[Answer]-Customize tastypie patch_list

1👍

There is the hook – alter_list_data_to_serialize.
Which is called just before creating the response.

def alter_list_data_to_serialize(self, request, data):
    #call external procedure here
    return data

data is the list to be serialized.

👤ge7600

Leave a comment