mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-09 08:00:52 +03:00
Add AllowAny class
This commit is contained in:
parent
d995742afc
commit
af96fe05d0
|
@ -18,6 +18,17 @@ class BasePermission(object):
|
||||||
raise NotImplementedError(".has_permission() must be overridden.")
|
raise NotImplementedError(".has_permission() must be overridden.")
|
||||||
|
|
||||||
|
|
||||||
|
class AllowAny(BasePermission):
|
||||||
|
"""
|
||||||
|
Allow any access.
|
||||||
|
This isn't strictly required, since you could use an empty
|
||||||
|
permission_classes list, but it's useful because it makes the intention
|
||||||
|
more explicit.
|
||||||
|
"""
|
||||||
|
def has_permission(self, request, view, obj=None):
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
class IsAuthenticated(BasePermission):
|
class IsAuthenticated(BasePermission):
|
||||||
"""
|
"""
|
||||||
Allows access only to authenticated users.
|
Allows access only to authenticated users.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user