Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
sujata
/
iba_backend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Registry
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 8037357c
authored
2025-08-05 12:28:58 +0530
by
sujata
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
changes
1 parent
d5e7bbfd
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
391 additions
and
19 deletions
src/api/academic-council/content-types/academic-council/schema.json
src/api/academic-council/controllers/academic-council.js
src/api/academic-council/routes/academic-council.js
src/api/academic-council/services/academic-council.js
src/api/chairman-message/content-types/chairman-message/schema.json
src/api/chairman-message/controllers/chairman-message.js
src/api/chairman-message/routes/chairman-message.js
src/api/chairman-message/services/chairman-message.js
src/api/chief-mentors-message/content-types/chief-mentors-message/schema.json
src/api/chief-mentors-message/controllers/chief-mentors-message.js
src/api/chief-mentors-message/routes/chief-mentors-message.js
src/api/chief-mentors-message/services/chief-mentors-message.js
src/api/founder-chairman-message/content-types/founder-chairman-message/schema.json
src/api/home-page/content-types/home-page/schema.json
src/api/the-governing-council/content-types/the-governing-council/schema.json
src/components/heading/heading.json
types/generated/components.d.ts
types/generated/contentTypes.d.ts
src/api/academic-council/content-types/academic-council/schema.json
0 → 100644
View file @
8037357
{
"kind"
:
"singleType"
,
"collectionName"
:
"academic_councils"
,
"info"
:
{
"singularName"
:
"academic-council"
,
"pluralName"
:
"academic-councils"
,
"displayName"
:
"Academic Advisory Council"
},
"options"
:
{
"draftAndPublish"
:
true
},
"pluginOptions"
:
{},
"attributes"
:
{
"Banner"
:
{
"type"
:
"component"
,
"component"
:
"inner-banner.inner-banner"
,
"repeatable"
:
false
},
"Heading"
:
{
"type"
:
"component"
,
"component"
:
"heading.heading"
,
"repeatable"
:
false
},
"MembersAcademicCouncil"
:
{
"type"
:
"component"
,
"component"
:
"aboutus.council-team"
,
"repeatable"
:
true
},
"VideoGallery"
:
{
"type"
:
"component"
,
"component"
:
"aboutus.video-gallery"
,
"repeatable"
:
false
},
"seo"
:
{
"type"
:
"component"
,
"component"
:
"shared.seo"
,
"repeatable"
:
false
},
"InvolvementofAcademicCouncil"
:
{
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"preset"
:
"defaultHtml"
}
}
}
}
src/api/academic-council/controllers/academic-council.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* academic-council controller
*/
const
{
createCoreController
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreController
(
'api::academic-council.academic-council'
);
src/api/academic-council/routes/academic-council.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* academic-council router
*/
const
{
createCoreRouter
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreRouter
(
'api::academic-council.academic-council'
);
src/api/academic-council/services/academic-council.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* academic-council service
*/
const
{
createCoreService
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreService
(
'api::academic-council.academic-council'
);
src/api/chairman-message/content-types/chairman-message/schema.json
0 → 100644
View file @
8037357
{
"kind"
:
"singleType"
,
"collectionName"
:
"chairman_messages"
,
"info"
:
{
"singularName"
:
"chairman-message"
,
"pluralName"
:
"chairman-messages"
,
"displayName"
:
"Chairman Message"
},
"options"
:
{
"draftAndPublish"
:
true
},
"pluginOptions"
:
{},
"attributes"
:
{
"Banner"
:
{
"type"
:
"component"
,
"component"
:
"inner-banner.inner-banner"
,
"repeatable"
:
false
},
"Heading"
:
{
"type"
:
"component"
,
"component"
:
"heading.heading"
,
"repeatable"
:
false
},
"ChairmanMessage"
:
{
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"preset"
:
"defaultHtml"
}
},
"ChairmanInfo"
:
{
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"preset"
:
"defaultHtml"
}
},
"VideoGallery"
:
{
"type"
:
"component"
,
"component"
:
"aboutus.video-gallery"
,
"repeatable"
:
false
},
"seo"
:
{
"type"
:
"component"
,
"component"
:
"shared.seo"
,
"repeatable"
:
false
}
}
}
src/api/chairman-message/controllers/chairman-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chairman-message controller
*/
const
{
createCoreController
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreController
(
'api::chairman-message.chairman-message'
);
src/api/chairman-message/routes/chairman-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chairman-message router
*/
const
{
createCoreRouter
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreRouter
(
'api::chairman-message.chairman-message'
);
src/api/chairman-message/services/chairman-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chairman-message service
*/
const
{
createCoreService
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreService
(
'api::chairman-message.chairman-message'
);
src/api/chief-mentors-message/content-types/chief-mentors-message/schema.json
0 → 100644
View file @
8037357
{
"kind"
:
"singleType"
,
"collectionName"
:
"chief_mentors_messages"
,
"info"
:
{
"singularName"
:
"chief-mentors-message"
,
"pluralName"
:
"chief-mentors-messages"
,
"displayName"
:
"Chief Mentors Message"
},
"options"
:
{
"draftAndPublish"
:
true
},
"pluginOptions"
:
{},
"attributes"
:
{
"Banner"
:
{
"type"
:
"component"
,
"component"
:
"inner-banner.inner-banner"
,
"repeatable"
:
false
},
"Heading"
:
{
"type"
:
"component"
,
"component"
:
"heading.heading"
,
"repeatable"
:
false
},
"Chiefmentorsmsg"
:
{
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"preset"
:
"defaultHtml"
}
},
"VideoGallery"
:
{
"type"
:
"component"
,
"component"
:
"aboutus.video-gallery"
,
"repeatable"
:
false
},
"seo"
:
{
"type"
:
"component"
,
"component"
:
"shared.seo"
,
"repeatable"
:
false
}
}
}
src/api/chief-mentors-message/controllers/chief-mentors-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chief-mentors-message controller
*/
const
{
createCoreController
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreController
(
'api::chief-mentors-message.chief-mentors-message'
);
src/api/chief-mentors-message/routes/chief-mentors-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chief-mentors-message router
*/
const
{
createCoreRouter
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreRouter
(
'api::chief-mentors-message.chief-mentors-message'
);
src/api/chief-mentors-message/services/chief-mentors-message.js
0 → 100644
View file @
8037357
'use strict'
;
/**
* chief-mentors-message service
*/
const
{
createCoreService
}
=
require
(
'@strapi/strapi'
).
factories
;
module
.
exports
=
createCoreService
(
'api::chief-mentors-message.chief-mentors-message'
);
src/api/founder-chairman-message/content-types/founder-chairman-message/schema.json
View file @
8037357
...
@@ -21,23 +21,24 @@
...
@@ -21,23 +21,24 @@
"component"
:
"heading.heading"
,
"component"
:
"heading.heading"
,
"repeatable"
:
false
"repeatable"
:
false
},
},
"Chairman"
:
{
"type"
:
"richtext"
},
"VideoGallery"
:
{
"VideoGallery"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"aboutus.video-gallery"
,
"component"
:
"aboutus.video-gallery"
,
"repeatable"
:
false
"repeatable"
:
false
},
},
"FounderMsg"
:
{
"type"
:
"richtext"
},
"seo"
:
{
"seo"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"shared.seo"
,
"component"
:
"shared.seo"
,
"repeatable"
:
false
"repeatable"
:
false
},
},
"Image"
:
{
"FounderMsg"
:
{
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"preset"
:
"defaultHtml"
}
},
"FounderInfo"
:
{
"type"
:
"customField"
,
"type"
:
"customField"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"customField"
:
"plugin::ckeditor5.CKEditor"
,
"options"
:
{
"options"
:
{
...
...
src/api/home-page/content-types/home-page/schema.json
View file @
8037357
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
"seo"
:
{
"seo"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"shared.seo"
,
"component"
:
"shared.seo"
,
"repeatable"
:
tru
e
"repeatable"
:
fals
e
},
},
"LifeatIBA"
:
{
"LifeatIBA"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
...
...
src/api/the-governing-council/content-types/the-governing-council/schema.json
View file @
8037357
...
@@ -11,19 +11,29 @@
...
@@ -11,19 +11,29 @@
},
},
"pluginOptions"
:
{},
"pluginOptions"
:
{},
"attributes"
:
{
"attributes"
:
{
"Banner"
:
{
"type"
:
"component"
,
"component"
:
"inner-banner.inner-banner"
,
"repeatable"
:
false
},
"Heading"
:
{
"type"
:
"component"
,
"component"
:
"heading.heading"
,
"repeatable"
:
false
},
"councilmember"
:
{
"councilmember"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"aboutus.council-team"
,
"component"
:
"aboutus.council-team"
,
"repeatable"
:
true
"repeatable"
:
true
},
},
"
seo
"
:
{
"
VideoGallery
"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"
shared.seo
"
,
"component"
:
"
aboutus.video-gallery
"
,
"repeatable"
:
tru
e
"repeatable"
:
fals
e
},
},
"
Banner
"
:
{
"
seo
"
:
{
"type"
:
"component"
,
"type"
:
"component"
,
"component"
:
"
inner-banner.inner-banner
"
,
"component"
:
"
shared.seo
"
,
"repeatable"
:
false
"repeatable"
:
false
}
}
}
}
...
...
src/components/heading/heading.json
View file @
8037357
...
@@ -13,6 +13,9 @@
...
@@ -13,6 +13,9 @@
},
},
"Heading2"
:
{
"Heading2"
:
{
"type"
:
"string"
"type"
:
"string"
},
"Description"
:
{
"type"
:
"text"
}
}
},
},
"config"
:
{}
"config"
:
{}
...
...
types/generated/components.d.ts
View file @
8037357
...
@@ -83,6 +83,7 @@ export interface HeadingHeading extends Struct.ComponentSchema {
...
@@ -83,6 +83,7 @@ export interface HeadingHeading extends Struct.ComponentSchema {
displayName
:
'Heading'
;
displayName
:
'Heading'
;
};
};
attributes
:
{
attributes
:
{
Description
:
Schema
.
Attribute
.
Text
;
Heading1
:
Schema
.
Attribute
.
String
;
Heading1
:
Schema
.
Attribute
.
String
;
Heading2
:
Schema
.
Attribute
.
String
;
Heading2
:
Schema
.
Attribute
.
String
;
Subheading
:
Schema
.
Attribute
.
String
;
Subheading
:
Schema
.
Attribute
.
String
;
...
...
types/generated/contentTypes.d.ts
View file @
8037357
...
@@ -373,6 +373,134 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
...
@@ -373,6 +373,134 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
};
};
}
}
export
interface
ApiAcademicCouncilAcademicCouncil
extends
Struct
.
SingleTypeSchema
{
collectionName
:
'academic_councils'
;
info
:
{
displayName
:
'Academic Advisory Council'
;
pluralName
:
'academic-councils'
;
singularName
:
'academic-council'
;
};
options
:
{
draftAndPublish
:
true
;
};
attributes
:
{
Banner
:
Schema
.
Attribute
.
Component
<
'inner-banner.inner-banner'
,
false
>
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
InvolvementofAcademicCouncil
:
Schema
.
Attribute
.
RichText
&
Schema
.
Attribute
.
CustomField
<
'plugin::ckeditor5.CKEditor'
,
{
preset
:
'defaultHtml'
;
}
>
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
localizations
:
Schema
.
Attribute
.
Relation
<
'oneToMany'
,
'api::academic-council.academic-council'
>
&
Schema
.
Attribute
.
Private
;
MembersAcademicCouncil
:
Schema
.
Attribute
.
Component
<
'aboutus.council-team'
,
true
>
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
false
>
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
VideoGallery
:
Schema
.
Attribute
.
Component
<
'aboutus.video-gallery'
,
false
>
;
};
}
export
interface
ApiChairmanMessageChairmanMessage
extends
Struct
.
SingleTypeSchema
{
collectionName
:
'chairman_messages'
;
info
:
{
displayName
:
'Chairman Message'
;
pluralName
:
'chairman-messages'
;
singularName
:
'chairman-message'
;
};
options
:
{
draftAndPublish
:
true
;
};
attributes
:
{
Banner
:
Schema
.
Attribute
.
Component
<
'inner-banner.inner-banner'
,
false
>
;
ChairmanInfo
:
Schema
.
Attribute
.
RichText
&
Schema
.
Attribute
.
CustomField
<
'plugin::ckeditor5.CKEditor'
,
{
preset
:
'defaultHtml'
;
}
>
;
ChairmanMessage
:
Schema
.
Attribute
.
RichText
&
Schema
.
Attribute
.
CustomField
<
'plugin::ckeditor5.CKEditor'
,
{
preset
:
'defaultHtml'
;
}
>
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
localizations
:
Schema
.
Attribute
.
Relation
<
'oneToMany'
,
'api::chairman-message.chairman-message'
>
&
Schema
.
Attribute
.
Private
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
false
>
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
VideoGallery
:
Schema
.
Attribute
.
Component
<
'aboutus.video-gallery'
,
false
>
;
};
}
export
interface
ApiChiefMentorsMessageChiefMentorsMessage
extends
Struct
.
SingleTypeSchema
{
collectionName
:
'chief_mentors_messages'
;
info
:
{
displayName
:
'Chief Mentors Message'
;
pluralName
:
'chief-mentors-messages'
;
singularName
:
'chief-mentors-message'
;
};
options
:
{
draftAndPublish
:
true
;
};
attributes
:
{
Banner
:
Schema
.
Attribute
.
Component
<
'inner-banner.inner-banner'
,
false
>
;
Chiefmentorsmsg
:
Schema
.
Attribute
.
RichText
&
Schema
.
Attribute
.
CustomField
<
'plugin::ckeditor5.CKEditor'
,
{
preset
:
'defaultHtml'
;
}
>
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
localizations
:
Schema
.
Attribute
.
Relation
<
'oneToMany'
,
'api::chief-mentors-message.chief-mentors-message'
>
&
Schema
.
Attribute
.
Private
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
false
>
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
VideoGallery
:
Schema
.
Attribute
.
Component
<
'aboutus.video-gallery'
,
false
>
;
};
}
export
interface
ApiFounderChairmanMessageFounderChairmanMessage
export
interface
ApiFounderChairmanMessageFounderChairmanMessage
extends
Struct
.
SingleTypeSchema
{
extends
Struct
.
SingleTypeSchema
{
collectionName
:
'founder_chairman_messages'
;
collectionName
:
'founder_chairman_messages'
;
...
@@ -386,19 +514,24 @@ export interface ApiFounderChairmanMessageFounderChairmanMessage
...
@@ -386,19 +514,24 @@ export interface ApiFounderChairmanMessageFounderChairmanMessage
};
};
attributes
:
{
attributes
:
{
Banner
:
Schema
.
Attribute
.
Component
<
'inner-banner.inner-banner'
,
false
>
;
Banner
:
Schema
.
Attribute
.
Component
<
'inner-banner.inner-banner'
,
false
>
;
Chairman
:
Schema
.
Attribute
.
RichText
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
FounderMsg
:
Schema
.
Attribute
.
RichText
;
FounderInfo
:
Schema
.
Attribute
.
RichText
&
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
Schema
.
Attribute
.
CustomField
<
Image
:
Schema
.
Attribute
.
RichText
&
'plugin::ckeditor5.CKEditor'
,
{
preset
:
'defaultHtml'
;
}
>
;
FounderMsg
:
Schema
.
Attribute
.
RichText
&
Schema
.
Attribute
.
CustomField
<
Schema
.
Attribute
.
CustomField
<
'plugin::ckeditor5.CKEditor'
,
'plugin::ckeditor5.CKEditor'
,
{
{
preset
:
'defaultHtml'
;
preset
:
'defaultHtml'
;
}
}
>
;
>
;
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
localizations
:
Schema
.
Attribute
.
Relation
<
localizations
:
Schema
.
Attribute
.
Relation
<
'oneToMany'
,
'oneToMany'
,
...
@@ -437,7 +570,7 @@ export interface ApiHomePageHomePage extends Struct.SingleTypeSchema {
...
@@ -437,7 +570,7 @@ export interface ApiHomePageHomePage extends Struct.SingleTypeSchema {
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
Overview
:
Schema
.
Attribute
.
Component
<
'home.overview'
,
false
>
;
Overview
:
Schema
.
Attribute
.
Component
<
'home.overview'
,
false
>
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
tru
e
>
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
fals
e
>
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
...
@@ -528,6 +661,7 @@ export interface ApiTheGoverningCouncilTheGoverningCouncil
...
@@ -528,6 +661,7 @@ export interface ApiTheGoverningCouncilTheGoverningCouncil
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdAt
:
Schema
.
Attribute
.
DateTime
;
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
createdBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
Heading
:
Schema
.
Attribute
.
Component
<
'heading.heading'
,
false
>
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
locale
:
Schema
.
Attribute
.
String
&
Schema
.
Attribute
.
Private
;
localizations
:
Schema
.
Attribute
.
Relation
<
localizations
:
Schema
.
Attribute
.
Relation
<
'oneToMany'
,
'oneToMany'
,
...
@@ -535,10 +669,11 @@ export interface ApiTheGoverningCouncilTheGoverningCouncil
...
@@ -535,10 +669,11 @@ export interface ApiTheGoverningCouncilTheGoverningCouncil
>
&
>
&
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
publishedAt
:
Schema
.
Attribute
.
DateTime
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
tru
e
>
;
seo
:
Schema
.
Attribute
.
Component
<
'shared.seo'
,
fals
e
>
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedAt
:
Schema
.
Attribute
.
DateTime
;
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
updatedBy
:
Schema
.
Attribute
.
Relation
<
'oneToOne'
,
'admin::user'
>
&
Schema
.
Attribute
.
Private
;
Schema
.
Attribute
.
Private
;
VideoGallery
:
Schema
.
Attribute
.
Component
<
'aboutus.video-gallery'
,
false
>
;
};
};
}
}
...
@@ -1051,6 +1186,9 @@ declare module '@strapi/strapi' {
...
@@ -1051,6 +1186,9 @@ declare module '@strapi/strapi' {
'admin::transfer-token'
:
AdminTransferToken
;
'admin::transfer-token'
:
AdminTransferToken
;
'admin::transfer-token-permission'
:
AdminTransferTokenPermission
;
'admin::transfer-token-permission'
:
AdminTransferTokenPermission
;
'admin::user'
:
AdminUser
;
'admin::user'
:
AdminUser
;
'api::academic-council.academic-council'
:
ApiAcademicCouncilAcademicCouncil
;
'api::chairman-message.chairman-message'
:
ApiChairmanMessageChairmanMessage
;
'api::chief-mentors-message.chief-mentors-message'
:
ApiChiefMentorsMessageChiefMentorsMessage
;
'api::founder-chairman-message.founder-chairman-message'
:
ApiFounderChairmanMessageFounderChairmanMessage
;
'api::founder-chairman-message.founder-chairman-message'
:
ApiFounderChairmanMessageFounderChairmanMessage
;
'api::home-page.home-page'
:
ApiHomePageHomePage
;
'api::home-page.home-page'
:
ApiHomePageHomePage
;
'api::members-of-academic-council.members-of-academic-council'
:
ApiMembersOfAcademicCouncilMembersOfAcademicCouncil
;
'api::members-of-academic-council.members-of-academic-council'
:
ApiMembersOfAcademicCouncilMembersOfAcademicCouncil
;
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment