summaryrefslogtreecommitdiff
path: root/app/client/dashboard/dashboard.actions.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-26 14:53:38 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-26 14:53:38 +0200
commitb9e1806c97dba043af5b20c78ba2be9bbf47b4d8 (patch)
tree0a3f342c41ef07a09ca26909bf376ff63943e8de /app/client/dashboard/dashboard.actions.js
parent79fa74e5fe24e4f22487213c917fab0a38c7ba2a (diff)
list morphs
Diffstat (limited to 'app/client/dashboard/dashboard.actions.js')
-rw-r--r--app/client/dashboard/dashboard.actions.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/client/dashboard/dashboard.actions.js b/app/client/dashboard/dashboard.actions.js
index ae54f02..2757830 100644
--- a/app/client/dashboard/dashboard.actions.js
+++ b/app/client/dashboard/dashboard.actions.js
@@ -8,11 +8,12 @@ export const load = () => (dispatch) => {
actions.folder.index({ activity: 'dataset', }),
actions.file.index({ module: 'samplernn', generated: 1, limit: 15, orderBy: 'created_at desc', }),
actions.file.index({ module: 'pix2pixhd', generated: 1, limit: 15, orderBy: 'created_at desc', }),
+ actions.file.index({ module: 'morph', generated: 1, limit: 15, orderBy: 'created_at desc', }),
], (percent, i, n) => {
console.log('dashboard load progress', i, n)
dispatch({ type: types.app.load_progress, progress: { i, n }})
}).then(res => {
- const [ tasks, folders, samplernn, pix2pixhd ] = res
+ const [ tasks, folders, samplernn, pix2pixhd, morph ] = res
const { mapFn, sortFn } = util.sort.orderByFn('date desc')
const foldersByModule = folders.map(mapFn).sort(sortFn).reduce((a,b) => {
const module = b[1].module
@@ -28,6 +29,7 @@ export const load = () => (dispatch) => {
renders: {
samplernn,
pix2pixhd,
+ morph,
},
foldersByModule,
},