You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

permissions.py 181 B

8 vuotta sitten
123456
  1. from rest_framework import permissions
  2. class IsOwner(permissions.BasePermission):
  3. def has_object_permission(self, request, view, obj):
  4. return obj.user == request.user