diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-01-16 02:05:42 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-01-16 02:05:42 +0100 |
| commit | 0b3dc585a0b02a3426b45f5cd474f81a31d5bd7b (patch) | |
| tree | 1362d4d5cb92b7f36a2fac4f9c34dc2d42142009 /app/client/modules/pix2pixhd/pix2pixhd.tasks.js | |
| parent | 477947fe83a37e82bced4d8e060f374aba287eb0 (diff) | |
uprez ui
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) +} + |
