diff options
| author | Jules <jules@asdf.us> | 2019-03-29 14:47:24 -0400 |
|---|---|---|
| committer | Jules <jules@asdf.us> | 2019-03-29 14:47:24 -0400 |
| commit | cb3d4041bf9e0c2a3ae9cc147c21afce06773a90 (patch) | |
| tree | 3ee1167d1182570d34c854c543098321ca51b4e3 /app/client/modules/pix2pixhd/pix2pixhd.tasks.js | |
| parent | 2ceb9a945233f4bcb27607a97c69a5031d4f2046 (diff) | |
| parent | 99b426636d2e645053a86d433f76875b81e2ba2d (diff) | |
Merge branch 'master' of asdf.us:live-cortex
Diffstat (limited to 'app/client/modules/pix2pixhd/pix2pixhd.tasks.js')
| -rw-r--r-- | app/client/modules/pix2pixhd/pix2pixhd.tasks.js | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/app/client/modules/pix2pixhd/pix2pixhd.tasks.js b/app/client/modules/pix2pixhd/pix2pixhd.tasks.js index 36c0f36..ec864e3 100644 --- a/app/client/modules/pix2pixhd/pix2pixhd.tasks.js +++ b/app/client/modules/pix2pixhd/pix2pixhd.tasks.js @@ -89,4 +89,20 @@ export const splice_task = (opt) => dispatch => { console.log(task) console.log('add splice task') return actions.queue.add_task(task) -}
\ No newline at end of file +} + +export const uprez_task = (opt) => dispatch => { + const task = { + module: module.name, + activity: 'uprez', + dataset: opt.dataset, + folder_id: opt.folder_id, + opt: { + ...opt, + } + } + console.log(task) + console.log('add uprez task') + return actions.queue.add_task(task) +} + |
