-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
from rest_framework.permissions import SAFE_METHODS, BasePermission | ||
|
||
|
||
class IsAuthorOrReadOnly(BasePermission): | ||
|
||
def has_permission(self, request, view): | ||
return (request.method in SAFE_METHODS | ||
or request.user.is_authenticated) | ||
class IsAuthorOrAdminOrReadOnly(BasePermission): | ||
|
||
def has_object_permission(self, request, view, obj): | ||
return obj.author == request.user | ||
return ( | ||
request.method in SAFE_METHODS | ||
or request.user.is_authenticated | ||
and request.user.is_staff | ||
or request.user == obj.author | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters