Browse Source

enhancement: add UI option to include/exclude attachment

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/2175/head
Raju Udava 2 years ago
parent
commit
d16ac031b8
  1. 9
      packages/nc-gui/components/import/ImportFromAirtable.vue
  2. 1
      packages/nocodb/src/lib/noco/meta/api/sync/helpers/job.ts

9
packages/nc-gui/components/import/ImportFromAirtable.vue

@ -77,6 +77,12 @@
hide-details
dense
/>
<v-checkbox
v-model="syncSource.details.options.syncAttachment"
label="Import Attachment Columns"
hide-details
dense
/>
<v-tooltip bottom>
<template #activator="{ on }">
<div v-on="on">
@ -192,7 +198,8 @@ export default {
syncData: true,
syncRollup: false,
syncLookup: true,
syncFormula: false
syncFormula: false,
syncAttachment: true
}
}
},

1
packages/nocodb/src/lib/noco/meta/api/sync/helpers/job.ts

@ -2295,5 +2295,6 @@ export interface AirtableSyncConfig {
syncRollup: boolean;
syncLookup: boolean;
syncFormula: boolean;
syncAttachment: boolean;
};
}

Loading…
Cancel
Save