(self, request, uuid)
| 117 | methods=["get"], |
| 118 | ) |
| 119 | def get_by_uuid(self, request, uuid): # type: ignore[no-untyped-def] |
| 120 | qs = self.get_queryset() # type: ignore[no-untyped-call] |
| 121 | project = get_object_or_404(qs, uuid=uuid) |
| 122 | serializer = self.get_serializer(project) |
| 123 | return Response(serializer.data) |
| 124 | |
| 125 | @extend_schema( |
| 126 | tags=["mcp"], |
nothing calls this directly
no test coverage detected