Skip to content

Commit 6e804f6

Browse files
committed
feat(cms): fellowship-tab-types
1 parent bbfeff2 commit 6e804f6

File tree

20 files changed

+1101
-744
lines changed

20 files changed

+1101
-744
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"kind": "collectionType",
3+
"collectionName": "fellows",
4+
"info": {
5+
"singularName": "fellow",
6+
"pluralName": "fellows",
7+
"displayName": "Fellow"
8+
},
9+
"options": {
10+
"draftAndPublish": true
11+
},
12+
"pluginOptions": {},
13+
"attributes": {
14+
"name": {
15+
"type": "string"
16+
},
17+
"profession": {
18+
"type": "string"
19+
},
20+
"workText": {
21+
"type": "string"
22+
},
23+
"arrowLinkText": {
24+
"type": "string"
25+
},
26+
"reportUrl": {
27+
"type": "string"
28+
},
29+
"profilePic": {
30+
"allowedTypes": [
31+
"images",
32+
"files",
33+
"videos",
34+
"audios"
35+
],
36+
"type": "media",
37+
"multiple": false
38+
}
39+
}
40+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* fellow controller
3+
*/
4+
5+
import { factories } from '@strapi/strapi'
6+
7+
export default factories.createCoreController('api::fellow.fellow');
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* fellow router
3+
*/
4+
5+
import { factories } from '@strapi/strapi';
6+
7+
export default factories.createCoreRouter('api::fellow.fellow');
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* fellow service
3+
*/
4+
5+
import { factories } from '@strapi/strapi';
6+
7+
export default factories.createCoreService('api::fellow.fellow');
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"kind": "singleType",
3+
"collectionName": "r_and_d_page_fellowship_tab_sections",
4+
"info": {
5+
"singularName": "r-and-d-page-fellowship-tab-section",
6+
"pluralName": "r-and-d-page-fellowship-tab-sections",
7+
"displayName": "R&DPageFellowshipTabSection",
8+
"description": ""
9+
},
10+
"options": {
11+
"draftAndPublish": true
12+
},
13+
"pluginOptions": {},
14+
"attributes": {
15+
"header": {
16+
"type": "string"
17+
},
18+
"subtitle": {
19+
"type": "text"
20+
},
21+
"testimonialsHeader": {
22+
"type": "string"
23+
},
24+
"fellowsHeader": {
25+
"type": "string"
26+
},
27+
"tabName": {
28+
"type": "string"
29+
}
30+
}
31+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* r-and-d-page-fellowship-tab-section controller
3+
*/
4+
5+
import { factories } from '@strapi/strapi'
6+
7+
export default factories.createCoreController('api::r-and-d-page-fellowship-tab-section.r-and-d-page-fellowship-tab-section');
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* r-and-d-page-fellowship-tab-section router
3+
*/
4+
5+
import { factories } from '@strapi/strapi';
6+
7+
export default factories.createCoreRouter('api::r-and-d-page-fellowship-tab-section.r-and-d-page-fellowship-tab-section');
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* r-and-d-page-fellowship-tab-section service
3+
*/
4+
5+
import { factories } from '@strapi/strapi';
6+
7+
export default factories.createCoreService('api::r-and-d-page-fellowship-tab-section.r-and-d-page-fellowship-tab-section');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"kind": "singleType",
3+
"collectionName": "r_and_d_page_fellowship_waitlist_sections",
4+
"info": {
5+
"singularName": "r-and-d-page-fellowship-waitlist-section",
6+
"pluralName": "r-and-d-page-fellowship-waitlist-sections",
7+
"displayName": "R&DPageFellowshipWaitlistSection"
8+
},
9+
"options": {
10+
"draftAndPublish": true
11+
},
12+
"pluginOptions": {},
13+
"attributes": {
14+
"header": {
15+
"type": "string"
16+
},
17+
"applyButton": {
18+
"type": "component",
19+
"repeatable": false,
20+
"component": "content.button-link"
21+
},
22+
"arrowLink": {
23+
"type": "component",
24+
"repeatable": false,
25+
"component": "content.button-link"
26+
},
27+
"icon": {
28+
"allowedTypes": [
29+
"images",
30+
"files",
31+
"videos",
32+
"audios"
33+
],
34+
"type": "media",
35+
"multiple": false
36+
}
37+
}
38+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* r-and-d-page-fellowship-waitlist-section controller
3+
*/
4+
5+
import { factories } from '@strapi/strapi'
6+
7+
export default factories.createCoreController('api::r-and-d-page-fellowship-waitlist-section.r-and-d-page-fellowship-waitlist-section');

0 commit comments

Comments
 (0)