Is there a best practice to assign a different permission to each action of a given APIView or ViewSet?
APIView
ViewSet
Let\'s suppose I defined some permis
RestFramework's class-based views have methods for each HTTP verb (ie : HTTP GET => view.get() etc). You just have to use django.contrib.auth's permissions, users, groups and decorators as documented.