mirror of
https://github.com/lemeow125/EquipmentTracker-Backend.git
synced 2024-11-17 14:19:25 +08:00
12 lines
413 B
Python
12 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
|