prohibit changes in projectiondefaults

resolves question in #4541
This commit is contained in:
FinnStutzenstein 2019-04-29 08:25:41 +02:00
parent 3584dd5646
commit 1b15f6ea14

View File

@ -288,12 +288,12 @@ class ProjectorViewSet(ModelViewSet):
return Response({"detail": message}) return Response({"detail": message})
class ProjectionDefaultViewSet(ModelViewSet): class ProjectionDefaultViewSet(ListModelMixin, RetrieveModelMixin, GenericViewSet):
""" """
API endpoint for projection defaults. API endpoint for projection defaults.
There are the following views: list, retrieve, create, update, There are the following views: list, and retrieve. Assigning projection defaults
partial_update and destroy. to projectors can be done by updating the projector.
""" """
access_permissions = ProjectionDefaultAccessPermissions() access_permissions = ProjectionDefaultAccessPermissions()
@ -305,8 +305,6 @@ class ProjectionDefaultViewSet(ModelViewSet):
""" """
if self.action in ("list", "retrieve"): if self.action in ("list", "retrieve"):
result = self.get_access_permissions().check_permissions(self.request.user) result = self.get_access_permissions().check_permissions(self.request.user)
elif self.action in ("create", "partial_update", "update", "destroy"):
result = has_perm(self.request.user, "core.can_manage_projector")
else: else:
result = False result = False
return result return result