Commit 1e1a8e11 by sujata

miner chnage

1 parent 88630000
Showing 55 changed files with 1155 additions and 32 deletions
{
"kind": "collectionType",
"kind": "singleType",
"collectionName": "alumni_sidebars",
"info": {
"singularName": "alumni-sidebar",
......@@ -14,7 +14,7 @@
"Title": {
"type": "string"
},
"Links": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": true
......
{
"kind": "collectionType",
"collectionName": "blog_categories",
"info": {
"singularName": "blog-category",
"pluralName": "blog-categories",
"displayName": "Blog Category"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Name": {
"type": "string"
},
"slug": {
"type": "uid",
"targetField": "Name"
},
"blogs": {
"type": "relation",
"relation": "oneToMany",
"target": "api::blog.blog",
"mappedBy": "blog_category"
}
}
}
'use strict';
/**
* blog-category controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::blog-category.blog-category');
'use strict';
/**
* blog-category router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::blog-category.blog-category');
'use strict';
/**
* blog-category service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::blog-category.blog-category');
{
"kind": "singleType",
"collectionName": "blog_pages",
"info": {
"singularName": "blog-page",
"pluralName": "blog-pages",
"displayName": "BlogPage"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
'use strict';
/**
* blog-page controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::blog-page.blog-page');
'use strict';
/**
* blog-page router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::blog-page.blog-page');
'use strict';
/**
* blog-page service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::blog-page.blog-page');
{
"kind": "singleType",
"kind": "collectionType",
"collectionName": "blogs",
"info": {
"singularName": "blog",
......@@ -11,15 +11,53 @@
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
"blog_category": {
"type": "relation",
"relation": "manyToOne",
"target": "api::blog-category.blog-category",
"inversedBy": "blogs"
},
"Name": {
"type": "string"
},
"ThumbnailImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"MainImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"seo": {
"Date": {
"type": "date"
},
"Details": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
},
"slug": {
"type": "uid",
"targetField": "Name"
},
"ImageSlider": {
"type": "component",
"component": "shared.seo",
"component": "dynamic-zone.image-slider",
"repeatable": false
},
"smalldescription": {
"type": "text"
}
}
}
{
"kind": "collectionType",
"kind": "singleType",
"collectionName": "campus_life_sidebars",
"info": {
"singularName": "campus-life-sidebar",
......@@ -11,10 +11,10 @@
},
"pluginOptions": {},
"attributes": {
"Label": {
"Title": {
"type": "string"
},
"Links": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": true
......
{
"kind": "singleType",
"collectionName": "contact_pages",
"info": {
"singularName": "contact-page",
"pluralName": "contact-pages",
"displayName": "ContactPage"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
},
"Address": {
"type": "component",
"component": "contact.address",
"repeatable": true
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
'use strict';
/**
* contact-page controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::contact-page.contact-page');
'use strict';
/**
* contact-page router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::contact-page.contact-page');
'use strict';
/**
* contact-page service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::contact-page.contact-page');
{
"kind": "collectionType",
"collectionName": "contacts",
"info": {
"singularName": "contact",
"pluralName": "contacts",
"displayName": "Contact"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"FormSource": {
"type": "string"
},
"Name": {
"type": "string"
},
"Email": {
"type": "string"
},
"PhoneNumber": {
"type": "string"
},
"State": {
"type": "string"
},
"City": {
"type": "string"
},
"EnquiryFor": {
"type": "string"
}
}
}
'use strict';
/**
* contact controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::contact.contact');
'use strict';
/**
* contact router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::contact.contact');
'use strict';
/**
* contact service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::contact.contact');
......@@ -12,9 +12,9 @@
"pluginOptions": {},
"attributes": {
"Name": {
"type": "text"
"type": "string"
},
"Slug": {
"slug": {
"type": "uid",
"targetField": "Name"
},
......
......@@ -16,10 +16,10 @@
"component": "inner-banner.inner-banner",
"repeatable": false
},
"events_sidebar": {
"type": "relation",
"relation": "oneToOne",
"target": "api::events-sidebar.events-sidebar"
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
......@@ -48,16 +48,19 @@
"type": "uid",
"targetField": "Name"
},
"ImageSlider": {
"type": "component",
"component": "dynamic-zone.image-slider",
"repeatable": false
},
"event_category": {
"type": "relation",
"relation": "manyToOne",
"target": "api::event-category.event-category",
"inversedBy": "events"
},
"ImageSlider": {
"type": "component",
"component": "dynamic-zone.image-slider",
"repeatable": false
"smalldescription": {
"type": "text"
}
}
}
{
"kind": "singleType",
"collectionName": "footer_sections",
"info": {
"singularName": "footer-section",
"pluralName": "footer-sections",
"displayName": "FooterSection"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"FooterLink": {
"type": "component",
"component": "footer.footer-link",
"repeatable": true
},
"overview": {
"type": "component",
"component": "footer-overview.overview",
"repeatable": false
}
}
}
'use strict';
/**
* footer-section controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::footer-section.footer-section');
'use strict';
/**
* footer-section router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::footer-section.footer-section');
'use strict';
/**
* footer-section service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::footer-section.footer-section');
{
"kind": "singleType",
"collectionName": "header_sections",
"info": {
"singularName": "header-section",
"pluralName": "header-sections",
"displayName": "HeaderSection"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"navLink": {
"type": "component",
"component": "header.nav-link",
"repeatable": true
}
}
}
'use strict';
/**
* header-section controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::header-section.header-section');
'use strict';
/**
* header-section router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::header-section.header-section');
'use strict';
/**
* header-section service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::header-section.header-section');
......@@ -11,20 +11,55 @@
},
"pluginOptions": {},
"attributes": {
"Overview": {
"Banner": {
"type": "component",
"component": "home.overview",
"component": "home.banner",
"repeatable": false
},
"seo": {
"ApprovalsAccreditations": {
"type": "component",
"component": "shared.seo",
"component": "placement.clientel",
"repeatable": false
},
"Overview": {
"type": "component",
"component": "home.overview",
"repeatable": false
},
"LifeatIBA": {
"type": "component",
"component": "home.lifeat-iba",
"repeatable": false
},
"ScholasticAssociation": {
"type": "component",
"component": "placement.clientel",
"repeatable": false
},
"CEOOverview": {
"type": "component",
"component": "home.ceo-overview",
"repeatable": false
},
"FinalPlacements": {
"type": "component",
"component": "home.final-placements",
"repeatable": false
},
"Testimonials": {
"type": "component",
"component": "home.testimonials",
"repeatable": false
},
"events": {
"type": "relation",
"relation": "oneToMany",
"target": "api::event.event"
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
......@@ -14,10 +14,10 @@
"Title": {
"type": "string"
},
"LInk": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": false
"repeatable": true
}
}
}
{
"collectionName": "components_contact_addresses",
"info": {
"displayName": "Address"
},
"options": {},
"attributes": {
"Heading": {
"type": "string"
},
"ContactDetails": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
{
"collectionName": "components_footer_overview_overviews",
"info": {
"displayName": "overview"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"logo": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"description": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
{
"collectionName": "components_footer_footer_links",
"info": {
"displayName": "FooterLink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"Links": {
"type": "component",
"component": "footer.links",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_footer_links",
"info": {
"displayName": "Links"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_header_ccs",
"info": {
"displayName": "CC"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_header_nav_links",
"info": {
"displayName": "navLink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"navSublink": {
"type": "component",
"component": "header.nav-sublink",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_header_nav_sublinks",
"info": {
"displayName": "navSublink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"navSubSublink": {
"type": "component",
"component": "header.cc",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_animated_texts",
"info": {
"displayName": "AnimatedText"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_banner_s",
"info": {
"displayName": "Banner "
},
"options": {},
"attributes": {
"Subheading": {
"type": "string"
},
"Heading": {
"type": "string"
},
"AnimatedText": {
"type": "component",
"component": "home.animated-text",
"repeatable": true
},
"BackImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"StudentImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"BoxImg": {
"type": "component",
"component": "home.box-img",
"repeatable": true
},
"SliderImg": {
"type": "component",
"component": "home.slider-img",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_batches",
"info": {
"displayName": "Batch"
},
"options": {},
"attributes": {
"StudentImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"StudentName": {
"type": "string"
},
"Batch": {
"type": "string"
},
"Location": {
"type": "string"
},
"Logo": {
"type": "media",
"multiple": true,
"allowedTypes": [
"images"
]
}
},
"config": {}
}
{
"collectionName": "components_home_box_imgs",
"info": {
"displayName": "BoxImg"
},
"options": {},
"attributes": {
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"Link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_cards",
"info": {
"displayName": "Card"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"Description": {
"type": "text"
},
"Link": {
"type": "string"
},
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
}
},
"config": {}
}
{
"collectionName": "components_home_ceo_overviews",
"info": {
"displayName": "CEOOverview"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"years": {
"type": "string"
},
"excellence": {
"type": "string"
},
"VideoImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"videoId": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_counters",
"info": {
"displayName": "Counter"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"suffix": {
"type": "string"
},
"counterNumber": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_final_placements",
"info": {
"displayName": "Final Placements"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"Counter": {
"type": "component",
"component": "home.counter",
"repeatable": true
},
"Batch": {
"type": "component",
"component": "home.batch",
"repeatable": false
}
},
"config": {}
}
......@@ -9,6 +9,11 @@
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"Card": {
"type": "component",
"component": "home.card",
"repeatable": true
}
},
"config": {}
......
......@@ -8,10 +8,14 @@
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": true
"repeatable": false
},
"Description": {
"type": "text"
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
......
{
"collectionName": "components_home_scholastic_associations",
"info": {
"displayName": "ScholasticAssociation"
},
"options": {},
"attributes": {
"Clientel": {
"type": "component",
"component": "placement.clientel",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_slider_imgs",
"info": {
"displayName": "SliderImg"
},
"options": {},
"attributes": {
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"Link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_testimonial_lists",
"info": {
"displayName": "TestimonialList"
},
"options": {},
"attributes": {
"Name": {
"type": "string"
},
"Message": {
"type": "text"
},
"Batch": {
"type": "string"
},
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
}
},
"config": {}
}
{
"collectionName": "components_home_testimonials",
"info": {
"displayName": "Testimonials"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"TestmonialList": {
"type": "component",
"component": "home.testimonial-list",
"repeatable": true
},
"Button": {
"type": "component",
"component": "cta.cta",
"repeatable": false
}
},
"config": {}
}
......@@ -127,6 +127,23 @@ export interface CampuslifeStudentAchievements extends Struct.ComponentSchema {
};
}
export interface ContactAddress extends Struct.ComponentSchema {
collectionName: 'components_contact_addresses';
info: {
displayName: 'Address';
};
attributes: {
ContactDetails: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
Heading: Schema.Attribute.String;
};
}
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
......@@ -357,6 +374,81 @@ export interface FacultyTabDetails extends Struct.ComponentSchema {
};
}
export interface FooterOverviewOverview extends Struct.ComponentSchema {
collectionName: 'components_footer_overview_overviews';
info: {
displayName: 'overview';
};
attributes: {
description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
logo: Schema.Attribute.Media<'images'>;
title: Schema.Attribute.String;
};
}
export interface FooterFooterLink extends Struct.ComponentSchema {
collectionName: 'components_footer_footer_links';
info: {
displayName: 'FooterLink';
};
attributes: {
Links: Schema.Attribute.Component<'footer.links', true>;
title: Schema.Attribute.String;
};
}
export interface FooterLinks extends Struct.ComponentSchema {
collectionName: 'components_footer_links';
info: {
displayName: 'Links';
};
attributes: {
link: Schema.Attribute.String;
title: Schema.Attribute.String;
};
}
export interface HeaderCc extends Struct.ComponentSchema {
collectionName: 'components_header_ccs';
info: {
displayName: 'CC';
};
attributes: {
link: Schema.Attribute.String;
title: Schema.Attribute.String;
};
}
export interface HeaderNavLink extends Struct.ComponentSchema {
collectionName: 'components_header_nav_links';
info: {
displayName: 'navLink';
};
attributes: {
link: Schema.Attribute.String;
navSublink: Schema.Attribute.Component<'header.nav-sublink', true>;
title: Schema.Attribute.String;
};
}
export interface HeaderNavSublink extends Struct.ComponentSchema {
collectionName: 'components_header_nav_sublinks';
info: {
displayName: 'navSublink';
};
attributes: {
link: Schema.Attribute.String;
navSubSublink: Schema.Attribute.Component<'header.cc', true>;
title: Schema.Attribute.String;
};
}
export interface HeadingHeading extends Struct.ComponentSchema {
collectionName: 'components_heading_headings';
info: {
......@@ -372,6 +464,108 @@ export interface HeadingHeading extends Struct.ComponentSchema {
};
}
export interface HomeAnimatedText extends Struct.ComponentSchema {
collectionName: 'components_home_animated_texts';
info: {
displayName: 'AnimatedText';
};
attributes: {
Title: Schema.Attribute.String;
};
}
export interface HomeBanner extends Struct.ComponentSchema {
collectionName: 'components_home_banner_s';
info: {
displayName: 'Banner ';
};
attributes: {
AnimatedText: Schema.Attribute.Component<'home.animated-text', true>;
BackImage: Schema.Attribute.Media<'images'>;
BoxImg: Schema.Attribute.Component<'home.box-img', true>;
Heading: Schema.Attribute.String;
SliderImg: Schema.Attribute.Component<'home.slider-img', true>;
StudentImg: Schema.Attribute.Media<'images'>;
Subheading: Schema.Attribute.String;
};
}
export interface HomeBatch extends Struct.ComponentSchema {
collectionName: 'components_home_batches';
info: {
displayName: 'Batch';
};
attributes: {
Batch: Schema.Attribute.String;
Location: Schema.Attribute.String;
Logo: Schema.Attribute.Media<'images', true>;
StudentImg: Schema.Attribute.Media<'images'>;
StudentName: Schema.Attribute.String;
};
}
export interface HomeBoxImg extends Struct.ComponentSchema {
collectionName: 'components_home_box_imgs';
info: {
displayName: 'BoxImg';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Link: Schema.Attribute.String;
};
}
export interface HomeCard extends Struct.ComponentSchema {
collectionName: 'components_home_cards';
info: {
displayName: 'Card';
};
attributes: {
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
Link: Schema.Attribute.String;
Title: Schema.Attribute.String;
};
}
export interface HomeCeoOverview extends Struct.ComponentSchema {
collectionName: 'components_home_ceo_overviews';
info: {
displayName: 'CEOOverview';
};
attributes: {
excellence: Schema.Attribute.String;
Heading: Schema.Attribute.Component<'heading.heading', false>;
videoId: Schema.Attribute.String;
VideoImg: Schema.Attribute.Media<'images'>;
years: Schema.Attribute.String;
};
}
export interface HomeCounter extends Struct.ComponentSchema {
collectionName: 'components_home_counters';
info: {
displayName: 'Counter';
};
attributes: {
counterNumber: Schema.Attribute.String;
suffix: Schema.Attribute.String;
Title: Schema.Attribute.String;
};
}
export interface HomeFinalPlacements extends Struct.ComponentSchema {
collectionName: 'components_home_final_placements';
info: {
displayName: 'Final Placements';
};
attributes: {
Batch: Schema.Attribute.Component<'home.batch', false>;
Counter: Schema.Attribute.Component<'home.counter', true>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
......@@ -386,6 +580,7 @@ export interface HomeLifeatIba extends Struct.ComponentSchema {
displayName: 'LifeatIBA';
};
attributes: {
Card: Schema.Attribute.Component<'home.card', true>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
......@@ -396,8 +591,60 @@ export interface HomeOverview extends Struct.ComponentSchema {
displayName: 'Overview';
};
attributes: {
Description: Schema.Attribute.Text;
Heading: Schema.Attribute.Component<'heading.heading', true>;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
export interface HomeScholasticAssociation extends Struct.ComponentSchema {
collectionName: 'components_home_scholastic_associations';
info: {
displayName: 'ScholasticAssociation';
};
attributes: {
Clientel: Schema.Attribute.Component<'placement.clientel', true>;
};
}
export interface HomeSliderImg extends Struct.ComponentSchema {
collectionName: 'components_home_slider_imgs';
info: {
displayName: 'SliderImg';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Link: Schema.Attribute.String;
};
}
export interface HomeTestimonialList extends Struct.ComponentSchema {
collectionName: 'components_home_testimonial_lists';
info: {
displayName: 'TestimonialList';
};
attributes: {
Batch: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Message: Schema.Attribute.Text;
Name: Schema.Attribute.String;
};
}
export interface HomeTestimonials extends Struct.ComponentSchema {
collectionName: 'components_home_testimonials';
info: {
displayName: 'Testimonials';
};
attributes: {
Button: Schema.Attribute.Component<'cta.cta', false>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
TestmonialList: Schema.Attribute.Component<'home.testimonial-list', true>;
};
}
......@@ -894,6 +1141,7 @@ declare module '@strapi/strapi' {
'aboutus.vission': AboutusVission;
'books-journals.books-list': BooksJournalsBooksList;
'campuslife.student-achievements': CampuslifeStudentAchievements;
'contact.address': ContactAddress;
'cta.cta': CtaCta;
'dynamic-zone.description': DynamicZoneDescription;
'dynamic-zone.dynamic-zone': DynamicZoneDynamicZone;
......@@ -911,10 +1159,28 @@ declare module '@strapi/strapi' {
'faculty.papers-presented': FacultyPapersPresented;
'faculty.sustainability-details': FacultySustainabilityDetails;
'faculty.tab-details': FacultyTabDetails;
'footer-overview.overview': FooterOverviewOverview;
'footer.footer-link': FooterFooterLink;
'footer.links': FooterLinks;
'header.cc': HeaderCc;
'header.nav-link': HeaderNavLink;
'header.nav-sublink': HeaderNavSublink;
'heading.heading': HeadingHeading;
'home.animated-text': HomeAnimatedText;
'home.banner': HomeBanner;
'home.batch': HomeBatch;
'home.box-img': HomeBoxImg;
'home.card': HomeCard;
'home.ceo-overview': HomeCeoOverview;
'home.counter': HomeCounter;
'home.final-placements': HomeFinalPlacements;
'home.home': HomeHome;
'home.lifeat-iba': HomeLifeatIba;
'home.overview': HomeOverview;
'home.scholastic-association': HomeScholasticAssociation;
'home.slider-img': HomeSliderImg;
'home.testimonial-list': HomeTestimonialList;
'home.testimonials': HomeTestimonials;
'inner-banner.inner-banner': InnerBannerInnerBanner;
'placement.clientel': PlacementClientel;
'placement.hire-from-iba': PlacementHireFromIba;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!