Commit efacfde0 by sujata

edit about us compont

1 parent b4e50c99
......@@ -32,6 +32,11 @@
"options": {
"preset": "defaultHtml"
}
},
"PdfLink": {
"type": "component",
"component": "aboutus.pdf-link",
"repeatable": true
}
}
}
{
"collectionName": "components_aboutus_pdf_links",
"info": {
"displayName": "PdfLink"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"Link": {
"type": "string"
},
"Pdf": {
"type": "media",
"multiple": false,
"allowedTypes": [
"files"
]
}
},
"config": {}
}
......@@ -71,6 +71,18 @@ export interface AboutusMissionAndVision extends Struct.ComponentSchema {
};
}
export interface AboutusPdfLink extends Struct.ComponentSchema {
collectionName: 'components_aboutus_pdf_links';
info: {
displayName: 'PdfLink';
};
attributes: {
Link: Schema.Attribute.String;
Pdf: Schema.Attribute.Media<'files'>;
Title: Schema.Attribute.String;
};
}
export interface AboutusVideoGallery extends Struct.ComponentSchema {
collectionName: 'components_aboutus_video_galleries';
info: {
......@@ -1154,6 +1166,7 @@ declare module '@strapi/strapi' {
'aboutus.cultural-symbols-list': AboutusCulturalSymbolsList;
'aboutus.involvementof-academic-council': AboutusInvolvementofAcademicCouncil;
'aboutus.mission-and-vision': AboutusMissionAndVision;
'aboutus.pdf-link': AboutusPdfLink;
'aboutus.video-gallery': AboutusVideoGallery;
'aboutus.video-l-ist': AboutusVideoLIst;
'aboutus.videolist': AboutusVideolist;
......
......@@ -2041,6 +2041,7 @@ export interface ApiInternationalAccreditationInternationalAccreditation
'api::international-accreditation.international-accreditation'
> &
Schema.Attribute.Private;
PdfLink: Schema.Attribute.Component<'aboutus.pdf-link', true>;
publishedAt: Schema.Attribute.DateTime;
seo: Schema.Attribute.Component<'shared.seo', false>;
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!