Skip to content

Commit

Permalink
feat: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
helllllllder committed Jun 27, 2024
1 parent e6f19d0 commit bc4c617
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion insights/dashboards/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ def get_queryset(self):
if project_id is not None:
return (
Dashboard.objects.filter(project_id=project_id)
.exclude(~Q(project_id__in=settings.PROJECT_ALLOW_LIST))
.exclude(
Q(name="Resultados de fluxos")
& ~Q(project_id__in=settings.PROJECT_ALLOW_LIST)
)
.order_by("created_on")
)

Expand Down

0 comments on commit bc4c617

Please sign in to comment.