diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-16 18:19:26 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-16 18:19:26 +0100 |
| commit | 15d9d864b539e221c6494b3535abef724517f207 (patch) | |
| tree | 1867734ad4740625848c69cd05f5497c21282b0c /frontend/app/views/graph/graph.actions.js | |
| parent | 901beb4df2c074ba54fedc91dd6e780cebe093d1 (diff) | |
uploading audio files and displaying them in a list
Diffstat (limited to 'frontend/app/views/graph/graph.actions.js')
| -rw-r--r-- | frontend/app/views/graph/graph.actions.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/app/views/graph/graph.actions.js b/frontend/app/views/graph/graph.actions.js index a24ccc2..eba3f92 100644 --- a/frontend/app/views/graph/graph.actions.js +++ b/frontend/app/views/graph/graph.actions.js @@ -25,6 +25,10 @@ export const toggleEditPageForm = () => dispatch => { dispatch({ type: types.graph.toggle_edit_page_form }) } +export const toggleAudioList = () => dispatch => { + dispatch({ type: types.graph.toggle_audio_list }) +} + export const updateGraphPage = page => dispatch => { dispatch({ type: types.graph.update_graph_page, page }) } |
