mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-25 09:44:32 +01:00
10 lines
268 B
Python
10 lines
268 B
Python
|
from rest_framework import permissions
|
||
|
from .methods import is_mediacms_editor
|
||
|
|
||
|
|
||
|
class IsMediacmsEditor(permissions.BasePermission):
|
||
|
def has_permission(self, request, view):
|
||
|
if is_mediacms_editor(request.user):
|
||
|
return True
|
||
|
return False
|