mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-04-04 17:11:38 +08:00
Compare commits
2 commits
298501b973
...
84ff7011ea
Author | SHA1 | Date | |
---|---|---|---|
84ff7011ea | |||
44796a93f7 |
2 changed files with 9 additions and 2 deletions
|
@ -19,7 +19,7 @@ class IsPlanning(BasePermission):
|
|||
"""
|
||||
|
||||
def has_permission(self, request, view):
|
||||
return bool(request.user and request.user.role in ("planning", "admin"))
|
||||
return bool(request.user and request.user.role in ("planning", "admin", "head", "staff"))
|
||||
|
||||
|
||||
class IsHead(BasePermission):
|
||||
|
|
|
@ -15,7 +15,14 @@ class QuestionnaireListAPIView(generics.ListAPIView):
|
|||
serializer_class = QuestionnaireSerializer
|
||||
queryset = Questionnaire.objects.all()
|
||||
pagination_class = PageNumberPagination
|
||||
permission_classes = [IsAuthenticated, IsPlanning]
|
||||
permission_classes = [IsAuthenticated]
|
||||
|
||||
def get_queryset(self):
|
||||
user = self.request.user
|
||||
if user.role == "client":
|
||||
return Questionnaire.objects.filter(client=user)
|
||||
else:
|
||||
return Questionnaire.objects.all()
|
||||
|
||||
|
||||
class QuestionnaireSubmitView(generics.CreateAPIView):
|
||||
|
|
Loading…
Add table
Reference in a new issue