Skip to content

Commit

Permalink
passes request to graph.delete_instances, defines returned response, re
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Apr 18, 2024
1 parent c640753 commit 8582c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arches/app/views/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def delete(self, request, graphid):
elif self.action == "delete_instances":
try:
graph = Graph.objects.get(graphid=graphid)
deleted_resource_count = graph.delete_instances()
resp = graph.delete_instances(request=request)
return JSONResponse(
{
"success": True,
Expand Down

0 comments on commit 8582c3a

Please sign in to comment.