Re: Django Rest Framework APIView request

2021-02-01 Thread Chetan Ganji
If it needs to be done on specific endpoints, write a custom decorator method for that endpoint. If it needs to be done on every request, write custom middleware. On Mon, Feb 1, 2021, 1:51 PM Ammar Mohammed wrote: > > Hi everyone i have an API View inherited from another class > i want to creat

Django Rest Framework APIView request

2021-02-01 Thread Ammar Mohammed
Hi everyone i have an API View inherited from another class i want to create a new app that reciver the current Client requests and process it then pass it to the original View (all i want to do is to recive the view from the user (the user will use the original urls without any edit in the cl