mirror of
https://github.com/lemeow125/EquipmentTracker-Backend.git
synced 2024-11-17 06:09:26 +08:00
11 lines
413 B
Python
11 lines
413 B
Python
from rest_framework.permissions import BasePermission
|
|
|
|
|
|
class IsTechnician(BasePermission):
|
|
message = "You must be a technician to perform this action."
|
|
|
|
def has_permission(self, request, view):
|
|
return request.user.is_authenticated and request.user.is_technician
|
|
|
|
def has_object_permission(self, request, view, obj):
|
|
return request.user.is_authenticated and request.user.is_technician
|