summaryrefslogtreecommitdiff
path: root/opendc/api/v2/topologies
diff options
context:
space:
mode:
authorGeorgios Andreadis <info@gandreadis.com>2020-06-26 14:11:49 +0200
committerGeorgios Andreadis <info@gandreadis.com>2020-06-26 14:11:49 +0200
commit3ad26793527bf077e296d652d22a0e4234a9b98d (patch)
tree1b64fd6105a8e3515b2a9c42b5a301b2834eb3d2 /opendc/api/v2/topologies
parentf1017676a150de60b13ff2b33ca83079d87aebfc (diff)
Implement DELETE and fix tests
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)