(sourceId: string, status: 'not_imported' | 'importing' | 'imported')
| 39 | }); |
| 40 | |
| 41 | export const setDataSourceImportStatus = (sourceId: string, status: 'not_imported' | 'importing' | 'imported') => ({ |
| 42 | type: 'SET_DATA_SOURCE_IMPORT_STATUS', |
| 43 | payload: { sourceId, status }, |
| 44 | }); |
| 45 | |
| 46 | export const addRun = (run: IRun) => ({ |
| 47 | type: 'ADD_RUN', |
nothing calls this directly
no outgoing calls
no test coverage detected