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
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.