Skip to content
Snippets Groups Projects
Commit cf9120b6 authored by Richard Fernando Heise Ferreira's avatar Richard Fernando Heise Ferreira
Browse files

Merge branch 'issue/3-collection-type-projetos' into 'develop'

issue #3: ADD colletion type Projetos in Strapi

See merge request !6
parents afe0a067 0d899684
No related branches found
No related tags found
1 merge request!6issue #3: ADD colletion type Projetos in Strapi
{
"kind": "collectionType",
"collectionName": "projetos",
"info": {
"singularName": "projeto",
"pluralName": "projetos",
"displayName": " Projeto"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Titulo": {
"type": "string"
},
"Status": {
"type": "string"
},
"Parceiro": {
"type": "string"
},
"Descricao": {
"type": "richtext"
}
}
}
'use strict';
/**
* projeto controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::projeto.projeto');
'use strict';
/**
* projeto router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::projeto.projeto');
'use strict';
/**
* projeto service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::projeto.projeto');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment