diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-01 16:42:13 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:56 +0200 |
| commit | 17ae0a3fafd806a5a533bf1d51a3ac708a8cf978 (patch) | |
| tree | c3687bd08891ef3698f4773e44a6920856229dfe /src/actions/simulations.js | |
| parent | eea529f57e3ee39d2f492062688b2848ced0a747 (diff) | |
Implement room name edit
Diffstat (limited to 'src/actions/simulations.js')
| -rw-r--r-- | src/actions/simulations.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/actions/simulations.js b/src/actions/simulations.js index 2e722d16..145ceab2 100644 --- a/src/actions/simulations.js +++ b/src/actions/simulations.js @@ -1,6 +1,4 @@ export const SET_AUTH_VISIBILITY_FILTER = "SET_AUTH_VISIBILITY_FILTER"; -export const OPEN_NEW_SIMULATION_MODAL = "OPEN_NEW_SIMULATION_MODAL"; -export const CLOSE_NEW_SIMULATION_MODAL = "CLOSE_SIMULATION_POPUP"; export const ADD_SIMULATION = "ADD_SIMULATION"; export const ADD_SIMULATION_SUCCEEDED = "ADD_SIMULATION_SUCCEEDED"; export const DELETE_SIMULATION = "DELETE_SIMULATION"; @@ -14,18 +12,6 @@ export function setAuthVisibilityFilter(filter) { }; } -export function openNewSimulationModal() { - return { - type: OPEN_NEW_SIMULATION_MODAL - }; -} - -export function closeNewSimulationModal() { - return { - type: CLOSE_NEW_SIMULATION_MODAL - }; -} - export function addSimulation(name) { return (dispatch, getState) => { const {auth} = getState(); |
