Hide invalid methods in Django Rest Framework Documentation View

100 Views Asked by At

If a set of methods, e.g. for creation, deletion, and update are only available for admin users, I want to be able to hide the method in the documentation view, but I have found no way to do so. Is this possible?

class MyDetailView(generics.RetrieveUpdateDestroyAPIView):
    queryset = MyObject.objects.all()
    authentication_classes = (SessionAuthentication, BasicAuthentication, TokenAuthentication)
    permission_classes = (permissions.IsAdminUser,)
    serializer_class = MySerializer
1

There are 1 best solutions below

2
On

I don't think you can just hide the method in the default documentation view.
You can do this on your front end, but the documentation view has no such functionality. It's just there to show the endpoints and the requests allowed on them.

User permissions are something that you will check and then render the appropriate forms in your front end.