Commit b3af6ce1 by sujata

blog ckeditor

1 parent 459f1878
......@@ -47,11 +47,15 @@
"audios"
]
},
"Description": {
"type": "blocks"
},
"slug": {
"type": "uid"
},
"Description": {
"type": "customField",
"options": {
"preset": "default"
},
"customField": "plugin::ckeditor5.CKEditor"
}
}
}
......@@ -21,8 +21,8 @@
"type": "dynamiczone",
"components": [
"layout.industry-overview",
"layout.clientel",
"layout.cfo-service"
"layout.cfo-service",
"layout.clientel"
]
}
}
......
......@@ -594,8 +594,14 @@ export interface ApiBlogBlog extends Struct.CollectionTypeSchema {
'images' | 'files' | 'videos' | 'audios'
>;
HeroImage: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Description: Schema.Attribute.Blocks;
slug: Schema.Attribute.UID;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1109,7 +1115,7 @@ export interface ApiIndustryPageIndustryPage extends Struct.SingleTypeSchema {
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
IndustryDetails: Schema.Attribute.DynamicZone<
['layout.industry-overview', 'layout.clientel', 'layout.cfo-service']
['layout.industry-overview', 'layout.cfo-service', 'layout.clientel']
>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!