I am working with DRF to build an API and I used a master class to do some validations to my class based views:
class MasterClass(APIView): def dispatch(sel
Since you didn't provide the dispatch method code it'll just be guesses. My 2 cents is that you're calling MasterClass's super at some point which will call the APIView dispatch which will call your POST.