Commit be7aee0d by jay

new content type about us added

1 parent eb299a86
{
"kind": "collectionType",
"collectionName": "about_uses",
"info": {
"singularName": "about-us",
"pluralName": "about-uses",
"displayName": "About us",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"year": {
"type": "string"
},
"description1": {
"type": "text"
},
"image": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images"
]
},
"description2": {
"type": "text"
}
}
}
'use strict';
/**
* about-us controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::about-us.about-us');
'use strict';
/**
* about-us router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::about-us.about-us');
'use strict';
/**
* about-us service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::about-us.about-us');
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!