-
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 pull request #60 from Vizzuality/SKY30-142-update-knowledge-hub…
…-cards [SKY30-142]: update knowledge hub cards
- Loading branch information
Showing
19 changed files
with
3,178 additions
and
1,543 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
116 changes: 116 additions & 0 deletions
116
...nt_manager_configuration_content_types##api##data-tool-ecosystem.data-tool-ecosystem.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,116 @@ | ||
{ | ||
"key": "plugin_content_manager_configuration_content_types::api::data-tool-ecosystem.data-tool-ecosystem", | ||
"value": { | ||
"uid": "api::data-tool-ecosystem.data-tool-ecosystem", | ||
"settings": { | ||
"bulkable": true, | ||
"filterable": true, | ||
"searchable": true, | ||
"pageSize": 10, | ||
"mainField": "name", | ||
"defaultSortBy": "name", | ||
"defaultSortOrder": "ASC" | ||
}, | ||
"metadatas": { | ||
"id": { | ||
"edit": {}, | ||
"list": { | ||
"label": "id", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"name": { | ||
"edit": { | ||
"label": "name", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "name", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"createdAt": { | ||
"edit": { | ||
"label": "createdAt", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": false, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "createdAt", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"updatedAt": { | ||
"edit": { | ||
"label": "updatedAt", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": false, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "updatedAt", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"createdBy": { | ||
"edit": { | ||
"label": "createdBy", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": false, | ||
"editable": true, | ||
"mainField": "firstname" | ||
}, | ||
"list": { | ||
"label": "createdBy", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"updatedBy": { | ||
"edit": { | ||
"label": "updatedBy", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": false, | ||
"editable": true, | ||
"mainField": "firstname" | ||
}, | ||
"list": { | ||
"label": "updatedBy", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
} | ||
}, | ||
"layouts": { | ||
"list": [ | ||
"id", | ||
"name", | ||
"createdAt", | ||
"updatedAt" | ||
], | ||
"edit": [ | ||
[ | ||
{ | ||
"name": "name", | ||
"size": 6 | ||
} | ||
] | ||
] | ||
} | ||
}, | ||
"type": "object", | ||
"environment": null, | ||
"tag": null | ||
} |
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
19 changes: 19 additions & 0 deletions
19
cms/src/api/data-tool-ecosystem/content-types/data-tool-ecosystem/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,19 @@ | ||
{ | ||
"kind": "collectionType", | ||
"collectionName": "data_tool_ecosystems", | ||
"info": { | ||
"singularName": "data-tool-ecosystem", | ||
"pluralName": "data-tool-ecosystems", | ||
"displayName": "Data Tool Ecosystem", | ||
"description": "" | ||
}, | ||
"options": { | ||
"draftAndPublish": true | ||
}, | ||
"pluginOptions": {}, | ||
"attributes": { | ||
"name": { | ||
"type": "string" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
cms/src/api/data-tool-ecosystem/controllers/data-tool-ecosystem.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,7 @@ | ||
/** | ||
* data-tool-ecosystem controller | ||
*/ | ||
|
||
import { factories } from '@strapi/strapi' | ||
|
||
export default factories.createCoreController('api::data-tool-ecosystem.data-tool-ecosystem'); |
Oops, something went wrong.