mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
Enabled batched members import method through enableDeveloperExperiments flag
no issue - Allows early testing of batched import method
This commit is contained in:
parent
bbcc0f5178
commit
8a7e00c413
@ -968,4 +968,11 @@ const members = {
|
||||
}
|
||||
};
|
||||
|
||||
// NOTE: remove below condition once batched import is production ready,
|
||||
// remember to swap out current importCSV method when doing so
|
||||
if (config.get('enableDeveloperExperiments')) {
|
||||
members.importCSV = members.importCSVBatched;
|
||||
delete members.importCSVBatched;
|
||||
}
|
||||
|
||||
module.exports = members;
|
||||
|
Loading…
Reference in New Issue
Block a user