More control over the data you send to Dromo
Dromo's backendSync
setting has been superseded by a new backendSyncMode
setting, giving you more control over what you send to Dromo's secure backend.
The backendSyncMode
setting has three options:
DISABLED
is equivalent tobackendSync: false
. With this setting, none of your data is ever sent to Dromo.FULL_DATA
is equivalent tobackendSync: true
. This enables all of the features that our secure backend offers -- notably the import data API.MAPPINGS_ONLY
is a new option, and finds a happy medium between the two existingbackendSync
options. With this backend sync mode, only your field mappings (imported column headers to schema fields) are sent to and stored on Dromo's servers. This enables you to use theautoMapHeaders
feature. However, the full import data is not sent to Dromo's servers, preserving any data privacy requirements you may have.
The nitty-gritty on the new backendSyncMode
can be found here.