Commit 315d6db8 by sujata

change in backend

1 parent e96cad00
......@@ -49,7 +49,7 @@
"second-dynamic-section.faq-list",
"second-dynamic-section.card",
"second-dynamic-section.card-slider",
"dynamic-zone.description"
"second-dynamic-section.description"
]
},
"seo": {
......
{
"collectionName": "components_second_dynamic_section_descriptions",
"info": {
"displayName": "Description"
},
"options": {},
"attributes": {
"Description": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
......@@ -907,6 +907,23 @@ export interface SecondDynamicSectionCardSlider extends Struct.ComponentSchema {
};
}
export interface SecondDynamicSectionDescription
extends Struct.ComponentSchema {
collectionName: 'components_second_dynamic_section_descriptions';
info: {
displayName: 'Description';
};
attributes: {
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
};
}
export interface SecondDynamicSectionFaq extends Struct.ComponentSchema {
collectionName: 'components_second_dynamic_section_faqs';
info: {
......@@ -1233,6 +1250,7 @@ declare module '@strapi/strapi' {
'press.new-list': PressNewList;
'second-dynamic-section.card': SecondDynamicSectionCard;
'second-dynamic-section.card-slider': SecondDynamicSectionCardSlider;
'second-dynamic-section.description': SecondDynamicSectionDescription;
'second-dynamic-section.faq': SecondDynamicSectionFaq;
'second-dynamic-section.faq-list': SecondDynamicSectionFaqList;
'second-dynamic-section.heading': SecondDynamicSectionHeading;
......
......@@ -2302,7 +2302,7 @@ export interface ApiPgdmCurriculumPgdmCurriculum
'second-dynamic-section.faq-list',
'second-dynamic-section.card',
'second-dynamic-section.card-slider',
'dynamic-zone.description',
'second-dynamic-section.description',
]
>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!