diff --git a/apiserver/plane/app/views/notification/base.py b/apiserver/plane/app/views/notification/base.py index 5d4a844b254..9218b34c4d6 100644 --- a/apiserver/plane/app/views/notification/base.py +++ b/apiserver/plane/app/views/notification/base.py @@ -195,7 +195,8 @@ def partial_update(self, request, slug, pk): return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) @allow_permission( - allowed_roles=[ROLE.ADMIN, ROLE.MEMBER, ROLE.VIEWER, ROLE.GUEST], level="WORKSPACE" + allowed_roles=[ROLE.ADMIN, ROLE.MEMBER, ROLE.VIEWER, ROLE.GUEST], + level="WORKSPACE", ) def mark_read(self, request, slug, pk): notification = Notification.objects.get( @@ -244,7 +245,6 @@ def unarchive(self, request, slug, pk): class UnreadNotificationEndpoint(BaseAPIView): - @allow_permission( allowed_roles=[ROLE.ADMIN, ROLE.MEMBER, ROLE.VIEWER, ROLE.GUEST], level="WORKSPACE", @@ -286,7 +286,6 @@ def get(self, request, slug): class MarkAllReadNotificationViewSet(BaseViewSet): - @allow_permission( allowed_roles=[ROLE.ADMIN, ROLE.MEMBER], level="WORKSPACE" ) @@ -373,9 +372,6 @@ class UserNotificationPreferenceEndpoint(BaseAPIView): serializer_class = UserNotificationPreferenceSerializer # request the object - @allow_permission( - allowed_roles=[ROLE.ADMIN, ROLE.MEMBER, ROLE.GUEST], level="WORKSPACE" - ) def get(self, request): user_notification_preference = UserNotificationPreference.objects.get( user=request.user @@ -386,9 +382,6 @@ def get(self, request): return Response(serializer.data, status=status.HTTP_200_OK) # update the object - @allow_permission( - allowed_roles=[ROLE.ADMIN, ROLE.MEMBER, ROLE.GUEST], level="WORKSPACE" - ) def patch(self, request): user_notification_preference = UserNotificationPreference.objects.get( user=request.user