diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 17:58:04 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 17:58:04 +0200 |
| commit | 4bc41e2c2a8b3fc8b22226a7f3ec6cc1e1a275b6 (patch) | |
| tree | 5852f240d7d84afd5e8676029df238ba08b93c89 /app/client/live/actions.js | |
| parent | 34573a4f34c862ee884d0a3fd5badb1d4af1d9c2 (diff) | |
more dropdowns
Diffstat (limited to 'app/client/live/actions.js')
| -rw-r--r-- | app/client/live/actions.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/client/live/actions.js b/app/client/live/actions.js index 5ee030a..026788d 100644 --- a/app/client/live/actions.js +++ b/app/client/live/actions.js @@ -16,6 +16,11 @@ export const list_checkpoints = () => { return { type: 'LOADING_CHECKPOINTS', } } +export const list_epochs = (path) => { + socket.list_epochs(path) + return { type: 'LOADING_EPOCHS', } +} + export const list_sequences = () => { socket.list_sequences() return { type: 'LOADING_SEQUENCES', } |
