chore: workspace active page filter (#5531)

This commit is contained in:
Bavisetti Narayan 2024-09-05 15:38:45 +05:30 committed by GitHub
parent 3d7098855f
commit d265635f7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ class WorkspaceFavoriteEndpoint(BaseAPIView):
workspace__slug=slug,
parent__isnull=True,
).filter(
Q(project__isnull=True)
Q(project__isnull=True) & ~Q(entity_type="page")
| (
Q(project__isnull=False)
& Q(project__project_projectmember__member=request.user)