-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
eb67a99
commit b0f1b2b
Showing
3 changed files
with
22 additions
and
6 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,10 +1,12 @@ | ||
from rest_framework.permissions import BasePermission, SAFE_METHODS | ||
|
||
from rest_framework.exceptions import PermissionDenied | ||
|
||
class ArticleUserWritePermission(BasePermission): | ||
message = 'Editing articles is restricted to the author only.' | ||
|
||
def has_object_permission(self, request, view, obj): | ||
if request.method in SAFE_METHODS: | ||
return True | ||
return obj.author == request.user | ||
if obj.author != request.user: | ||
raise PermissionDenied('You do not have permission to edit this article.') | ||
return True |
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