X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e83b5a007f55a47a9acfa5c363c3f9f3bc7495de..4a4da2249d80ed4116f534689684abff61ee2cd9:/src/store/file-uploader/file-uploader-actions.ts diff --git a/src/store/file-uploader/file-uploader-actions.ts b/src/store/file-uploader/file-uploader-actions.ts index 0d2ff209..a397bbd8 100644 --- a/src/store/file-uploader/file-uploader-actions.ts +++ b/src/store/file-uploader/file-uploader-actions.ts @@ -2,9 +2,9 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { unionize, ofType, UnionOf } from "~/common/unionize"; +import { unionize, ofType, UnionOf } from "common/unionize"; import { Dispatch } from "redux"; -import { RootState } from '~/store/store'; +import { RootState } from 'store/store'; export interface UploadFile { id: number; @@ -24,6 +24,7 @@ export const fileUploaderActions = unionize({ SET_UPLOAD_PROGRESS: ofType<{ fileId: number, loaded: number, total: number, currentTime: number }>(), START_UPLOAD: ofType(), DELETE_UPLOAD_FILE: ofType(), + CANCEL_FILES_UPLOAD: ofType(), }); export type FileUploaderAction = UnionOf;