@botonic/plugin-contentful
Version:
Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet
20 lines (15 loc) • 620 B
text/typescript
import Migration, { MigrationContext } from 'contentful-migration'
import { createCommonFields, createFieldButtons } from '../factories'
function createCarousel(migration: Migration) {
// TODO WIP
const element = migration
.createContentType('element')
.name('Element')
.description('Image with text and a button displayed on a Carousel')
createFieldButtons(element)
const carousel = migration.createContentType('carousel')
createCommonFields(carousel, { shortText: true, keywords: true })
}
module.exports = function (migration: Migration, _: MigrationContext) {
createCarousel(migration)
}