fix(frontend): adress broken UI tests (#12183)

* try different matching mechanism

* fix for changes in #12168

* disable broken test from https://github.com/inventree/InvenTree/pull/12169

* revert observability perm change
This commit is contained in:
Matthias Mair
2026-06-17 09:39:00 +10:00
committed by GitHub
parent 7da65c8e50
commit 91a4b2a1a5
4 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -1405,7 +1405,8 @@ class ObservabilityEndSerializer(serializers.Serializer):
class ObservabilityEnd(CreateAPI):
"""Endpoint for observability tools."""
permission_classes = [IsAuthenticated, AllowAnyOrReadScope]
# Note: This endpoint can be called anonymously, as it needs to function before the user is authenticated (e.g. during login)
permission_classes = [AllowAnyOrReadScope]
serializer_class = ObservabilityEndSerializer
def create(self, request, *args, **kwargs):