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, 8 insertions, 0 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 e19a7f21..529e8663 100644
--- a/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
+++ b/opendc-web/opendc-web-ui/src/redux/actions/topologies.js
@@ -1,4 +1,5 @@
export const ADD_TOPOLOGY = 'ADD_TOPOLOGY'
+export const STORE_TOPOLOGY = 'STORE_TOPOLOGY'
export function addTopology(projectId, name, duplicateId) {
return {
@@ -8,3 +9,10 @@ export function addTopology(projectId, name, duplicateId) {
duplicateId,
}
}
+
+export function storeTopology(entities) {
+ return {
+ type: STORE_TOPOLOGY,
+ entities,
+ }
+}