Add processing to list of statuses in migrations

This commit is contained in:
Bradley Schofield
2024-05-17 14:55:53 +09:00
parent 0af1af4852
commit 2cdf5dfebd
@@ -36,6 +36,8 @@
return 'failed';
} else if (status === 'completed') {
return 'completed';
} else if (status === 'processing') {
return 'processing';
}
return 'pending';