-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 30_blog-article
- Loading branch information
Showing
41 changed files
with
23,471 additions
and
24,434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
strapi/src/api/project-description/content-types/project-description/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"kind": "singleType", | ||
"collectionName": "project_descriptions", | ||
"info": { | ||
"singularName": "project-description", | ||
"pluralName": "project-descriptions", | ||
"displayName": "Project Description" | ||
}, | ||
"options": { | ||
"draftAndPublish": true | ||
}, | ||
"pluginOptions": {}, | ||
"attributes": { | ||
"Text": { | ||
"type": "blocks" | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
strapi/src/api/project-description/controllers/project-description.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* project-description controller | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreController( | ||
"api::project-description.project-description", | ||
); |
9 changes: 9 additions & 0 deletions
9
strapi/src/api/project-description/routes/project-description.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* project-description router | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreRouter( | ||
"api::project-description.project-description", | ||
); |
9 changes: 9 additions & 0 deletions
9
strapi/src/api/project-description/services/project-description.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* project-description service | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreService( | ||
"api::project-description.project-description", | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"kind": "collectionType", | ||
"collectionName": "projects", | ||
"info": { | ||
"singularName": "project", | ||
"pluralName": "projects", | ||
"displayName": "Project" | ||
}, | ||
"options": { | ||
"draftAndPublish": true | ||
}, | ||
"pluginOptions": {}, | ||
"attributes": { | ||
"Name": { | ||
"type": "string", | ||
"required": true | ||
}, | ||
"Description": { | ||
"type": "blocks", | ||
"required": true | ||
}, | ||
"Images": { | ||
"allowedTypes": ["images"], | ||
"type": "media", | ||
"multiple": true, | ||
"required": true | ||
}, | ||
"technologies": { | ||
"type": "relation", | ||
"relation": "manyToMany", | ||
"target": "api::technology.technology", | ||
"inversedBy": "projects" | ||
}, | ||
"Demo": { | ||
"type": "component", | ||
"repeatable": true, | ||
"component": "link.link" | ||
}, | ||
"Acronym": { | ||
"type": "string", | ||
"required": true, | ||
"unique": true, | ||
"maxLength": 8 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* project controller | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreController("api::project.project"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* project router | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreRouter("api::project.project"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* project service | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreService("api::project.project"); |
26 changes: 26 additions & 0 deletions
26
strapi/src/api/technology/content-types/technology/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"kind": "collectionType", | ||
"collectionName": "technologies", | ||
"info": { | ||
"singularName": "technology", | ||
"pluralName": "technologies", | ||
"displayName": "Technology" | ||
}, | ||
"options": { | ||
"draftAndPublish": true | ||
}, | ||
"pluginOptions": {}, | ||
"attributes": { | ||
"Name": { | ||
"type": "string", | ||
"required": true, | ||
"unique": true | ||
}, | ||
"projects": { | ||
"type": "relation", | ||
"relation": "manyToMany", | ||
"target": "api::project.project", | ||
"mappedBy": "technologies" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* technology controller | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreController("api::technology.technology"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* technology router | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreRouter("api::technology.technology"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* technology service | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreService("api::technology.technology"); |
18 changes: 18 additions & 0 deletions
18
strapi/src/api/test-collection/content-types/test-collection/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"kind": "collectionType", | ||
"collectionName": "test_collections", | ||
"info": { | ||
"singularName": "test-collection", | ||
"pluralName": "test-collections", | ||
"displayName": "test-collection" | ||
}, | ||
"options": { | ||
"draftAndPublish": true | ||
}, | ||
"pluginOptions": {}, | ||
"attributes": { | ||
"yuh": { | ||
"type": "string" | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
strapi/src/api/test-collection/controllers/test-collection.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* test-collection controller | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreController( | ||
"api::test-collection.test-collection", | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* test-collection router | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreRouter( | ||
"api::test-collection.test-collection", | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* test-collection service | ||
*/ | ||
|
||
import { factories } from "@strapi/strapi"; | ||
|
||
export default factories.createCoreService( | ||
"api::test-collection.test-collection", | ||
); |
Oops, something went wrong.