summaryrefslogtreecommitdiff
path: root/opendc/api/v2/topologies
diff options
context:
space:
mode:
Diffstat (limited to 'opendc/api/v2/topologies')
-rw-r--r--opendc/api/v2/topologies/topologyId/endpoint.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/opendc/api/v2/topologies/topologyId/endpoint.py b/opendc/api/v2/topologies/topologyId/endpoint.py
index 3470ad94..6c6ab9c2 100644
--- a/opendc/api/v2/topologies/topologyId/endpoint.py
+++ b/opendc/api/v2/topologies/topologyId/endpoint.py
@@ -11,7 +11,6 @@ def GET(request):
topology = Topology.from_id(request.params_path['topologyId'])
topology.check_exists()
-
topology.check_user_access(request.google_id, False)
return Response(200, 'Successfully retrieved topology.', topology.obj)