strapi-plugin-import-content
strapi-plugin-import-content copied to clipboard
Import plugin for Strapi CMS
Some components are missed in the repo but there are references from the Home page & Create Import Page
For instance, ability to add a "source" field that is the name of the imported content. Possibly add "formula" fields that are calculated from incoming content properties.
Any user that has access to the Import feature should be able to GET /preAnalyzeImportFile and create an import.
I think the line that saves the new content will only work with bookshelf: ``` const savedContent = await strapi.models[importConfig.contentType] .forge(importedItem) .save(); ```
As imports grow in complexity, it will be useful to undo, then edit and redo instead of recreating the import config from scratch.