summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-ui/src/redux/actions/topologies.js')
-rw-r--r--opendc-web/opendc-web-ui/src/redux/actions/topologies.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/opendc-web/opendc-web-ui/src/redux/actions/topologies.js b/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
index abfded7e..e19a7f21 100644
--- a/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
+++ b/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
@@ -1,5 +1,4 @@
export const ADD_TOPOLOGY = 'ADD_TOPOLOGY'
-export const DELETE_TOPOLOGY = 'DELETE_TOPOLOGY'
export function addTopology(projectId, name, duplicateId) {
return {
@@ -9,10 +8,3 @@ export function addTopology(projectId, name, duplicateId) {
duplicateId,
}
}
-
-export function deleteTopology(id) {
- return {
- type: DELETE_TOPOLOGY,
- id,
- }
-}