Commit b3af6ce1 by sujata

blog ckeditor

1 parent 459f1878
...@@ -47,11 +47,15 @@ ...@@ -47,11 +47,15 @@
"audios" "audios"
] ]
}, },
"Description": {
"type": "blocks"
},
"slug": { "slug": {
"type": "uid" "type": "uid"
},
"Description": {
"type": "customField",
"options": {
"preset": "default"
},
"customField": "plugin::ckeditor5.CKEditor"
} }
} }
} }
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
"type": "dynamiczone", "type": "dynamiczone",
"components": [ "components": [
"layout.industry-overview", "layout.industry-overview",
"layout.clientel", "layout.cfo-service",
"layout.cfo-service" "layout.clientel"
] ]
} }
} }
......
...@@ -594,8 +594,14 @@ export interface ApiBlogBlog extends Struct.CollectionTypeSchema { ...@@ -594,8 +594,14 @@ export interface ApiBlogBlog extends Struct.CollectionTypeSchema {
'images' | 'files' | 'videos' | 'audios' 'images' | 'files' | 'videos' | 'audios'
>; >;
HeroImage: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; HeroImage: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Description: Schema.Attribute.Blocks;
slug: Schema.Attribute.UID; slug: Schema.Attribute.UID;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
...@@ -1109,7 +1115,7 @@ export interface ApiIndustryPageIndustryPage extends Struct.SingleTypeSchema { ...@@ -1109,7 +1115,7 @@ export interface ApiIndustryPageIndustryPage extends Struct.SingleTypeSchema {
attributes: { attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>; Banner: Schema.Attribute.Component<'layout.page-banner', false>;
IndustryDetails: Schema.Attribute.DynamicZone< IndustryDetails: Schema.Attribute.DynamicZone<
['layout.industry-overview', 'layout.clientel', 'layout.cfo-service'] ['layout.industry-overview', 'layout.cfo-service', 'layout.clientel']
>; >;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
updatedAt: 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!