Commit 9aeff23d by Gaurav Dev

added cars description reach text

1 parent 54ef8b36
HOST=0.0.0.0
PORT=1337
APP_KEYS="toBeModified1,toBeModified2"
API_TOKEN_SALT=tobemodified
ADMIN_JWT_SECRET=tobemodified
JWT_SECRET=tobemodified
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=games
DATABASE_USERNAME=jay
DATABASE_PASSWORD=postgres
DATABASE_SCHEMA=public
SMTP_HOST=smtp.mailtrap.io
SMTP_PORT=2525
SMTP_USERNAME=2b3a6bda8b6889
SMTP_PASSWORD=521c5fbdaa4326
AWS_ACCESS_KEY_ID=AKIAWEORL2NILWHOB2OQ
AWS_ACCESS_SECRET=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
AWS_REGION=ap-south-1
AWS_BUCKET=hiranandanioffers
SPERTO_API_KEY= "REALATTE-16072021-HVV14-KKJD4-GTCNJ"
CAMPAIGN_KEY="2022110305181116215817187355647526363aa7bc261a662375614"
......@@ -19,6 +19,7 @@
"@strapi/strapi": "4.3.6",
"better-sqlite3": "7.4.6",
"mysql": "^2.18.1",
"mysql2": "^3.9.3",
"pg": "^8.8.0",
"strapi-plugin-ckeditor5": "^2.1.1-rc.1"
},
......
......@@ -91,9 +91,6 @@
"connectivityTitle": {
"type": "text"
},
"connectivityPara": {
"type": "text"
},
"connectImg": {
"type": "media",
"multiple": true,
......@@ -185,6 +182,12 @@
},
"locationUrl": {
"type": "text"
},
"ConnectivityPara": {
"type": "richtext"
},
"connectivityPara": {
"type": "richtext"
}
}
}
{
"kind": "collectionType",
"collectionName": "homes",
"info": {
"singularName": "home",
"pluralName": "homes",
"displayName": "home",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"bannerText": {
"type": "string"
},
"bannerImageDesktop": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"bannerImageMobile": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"bannerBtnText": {
"type": "string"
},
"bannerBtnUrl": {
"type": "string"
},
"carModals": {
"type": "richtext"
}
}
}
'use strict';
/**
* home controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::home.home');
'use strict';
/**
* home router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::home.home');
'use strict';
/**
* home service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::home.home');
This diff could not be displayed because it is too large.
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!