Commit 8115192b by Ravindra Kanojiya

created faqs

1 parent 5bfb95cc
{
"kind": "collectionType",
"collectionName": "fa_qs",
"info": {
"singularName": "fa-q",
"pluralName": "fa-qs",
"displayName": "FAQs"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"question": {
"type": "text"
},
"answer": {
"type": "richtext"
}
}
}
'use strict';
/**
* fa-q controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::fa-q.fa-q');
'use strict';
/**
* fa-q router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::fa-q.fa-q');
'use strict';
/**
* fa-q service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::fa-q.fa-q');
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!