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.js27
1 files changed, 0 insertions, 27 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
deleted file mode 100644
index fc697cc2..00000000
--- a/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
+++ /dev/null
@@ -1,27 +0,0 @@
-export const OPEN_TOPOLOGY = 'OPEN_TOPOLOGY'
-export const ADD_TOPOLOGY = 'ADD_TOPOLOGY'
-export const STORE_TOPOLOGY = 'STORE_TOPOLOGY'
-
-export function openTopology(id) {
- return {
- type: OPEN_TOPOLOGY,
- id,
- }
-}
-
-export function addTopology(projectId, name, duplicateId) {
- return {
- type: ADD_TOPOLOGY,
- projectId,
- name,
- duplicateId,
- }
-}
-
-export function storeTopology(topology, entities) {
- return {
- type: STORE_TOPOLOGY,
- topology,
- entities,
- }
-}