Commit 77e91789 by Gomathi236

Initial commit

parents
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{package.json,*.yml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
HOST=0.0.0.0
PORT=1337
APP_KEYS=
.cache
build
**/node_modules/**
{
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"commonjs": true,
"es6": true,
"node": true,
"browser": false
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": false
},
"sourceType": "module"
},
"globals": {
"strapi": true
},
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"no-console": 0,
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}
############################
# OS X
############################
.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*
############################
# Linux
############################
*~
############################
# Windows
############################
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
############################
# Packages
############################
*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid
############################
# Logs and databases
############################
.tmp
*.log
*.sql
*.sqlite
*.sqlite3
############################
# Misc.
############################
*#
ssl
.idea
nbproject
public/uploads/*
!public/uploads/.gitkeep
############################
# Node.js
############################
lib-cov
lcov.info
pids
logs
results
node_modules
.node_history
############################
# Tests
############################
testApp
coverage
############################
# Strapi
############################
.env
license.txt
exports
*.cache
build
.strapi-updater.json
# 🚀 Getting started with Strapi
Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds.
### `develop`
Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop)
```
npm run develop
# or
yarn develop
```
### `start`
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start)
```
npm run start
# or
yarn start
```
### `build`
Build your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build)
```
npm run build
# or
yarn build
```
## ⚙️ Deployment
Strapi gives you many possible deployment options for your project. Find the one that suits you on the [deployment section of the documentation](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html).
## 📚 Learn more
- [Resource center](https://strapi.io/resource-center) - Strapi resource center.
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation.
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community.
- [Strapi blog](https://docs.strapi.io) - Official Strapi blog containing articles made by the Strapi team and the community.
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements.
Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome!
## ✨ Community
- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team.
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members.
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi.
---
<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub>
module.exports = ({ env }) => ({
auth: {
secret: env('ADMIN_JWT_SECRET'),
},
apiToken: {
salt: env('API_TOKEN_SALT'),
},
});
module.exports = {
rest: {
defaultLimit: 25,
maxLimit: 100,
withCount: true,
},
};
module.exports = ({ env }) => ({
connection: {
client: 'mysql',
connection: {
host: env('DATABASE_HOST', '127.0.0.1'),
port: env.int('DATABASE_PORT', 3306),
database: env('DATABASE_NAME', 'flash-ent'),
user: env('DATABASE_USERNAME', 'localhost'),
password: env('DATABASE_PASSWORD', 'root'),
ssl: env.bool('DATABASE_SSL', false),
},
},
});
module.exports = [
'strapi::errors',
'strapi::security',
'strapi::cors',
'strapi::poweredBy',
'strapi::logger',
'strapi::query',
'strapi::body',
'strapi::session',
'strapi::favicon',
'strapi::public',
];
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
});
File added
{
"name": "flash-ent",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi"
},
"devDependencies": {},
"dependencies": {
"@strapi/strapi": "4.2.3",
"@strapi/plugin-users-permissions": "4.2.3",
"@strapi/plugin-i18n": "4.2.3",
"mysql": "2.18.1"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "460b8f88-45d3-42e8-97db-e7c994c3abd7"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}
# To prevent search engines from seeing the site altogether, uncomment the next two lines:
# User-Agent: *
# Disallow: /
export default {
config: {
locales: [
// 'ar',
// 'fr',
// 'cs',
// 'de',
// 'dk',
// 'es',
// 'he',
// 'id',
// 'it',
// 'ja',
// 'ko',
// 'ms',
// 'nl',
// 'no',
// 'pl',
// 'pt-BR',
// 'pt',
// 'ru',
// 'sk',
// 'sv',
// 'th',
// 'tr',
// 'uk',
// 'vi',
// 'zh-Hans',
// 'zh',
],
},
bootstrap(app) {
console.log(app);
},
};
'use strict';
/* eslint-disable no-unused-vars */
module.exports = (config, webpack) => {
// Note: we provide webpack above so you should not `require` it
// Perform customizations to webpack config
// Important: return the modified config
return config;
};
{
"kind": "collectionType",
"collectionName": "blogs",
"info": {
"singularName": "blog",
"pluralName": "blogs",
"displayName": "Blog"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"title": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"markdown": {
"type": "richtext"
},
"publishedOn": {
"type": "string"
},
"verticalImage": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"publisherName": {
"type": "string"
},
"description": {
"type": "string"
},
"slug": {
"type": "string"
},
"active": {
"type": "boolean"
}
}
}
'use strict';
/**
* blog controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::blog.blog');
'use strict';
/**
* blog router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::blog.blog');
'use strict';
/**
* blog service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::blog.blog');
{
"kind": "collectionType",
"collectionName": "contact_requests",
"info": {
"singularName": "contact-request",
"pluralName": "contact-requests",
"displayName": "ContactRequest"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"type": {
"type": "string"
},
"company": {
"type": "string"
},
"position": {
"type": "string"
},
"firstname": {
"type": "string"
},
"lastname": {
"type": "string"
},
"phone": {
"type": "string"
},
"consents": {
"type": "string"
},
"message": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
'use strict';
/**
* contact-request controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::contact-request.contact-request');
'use strict';
/**
* contact-request router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::contact-request.contact-request');
'use strict';
/**
* contact-request service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::contact-request.contact-request');
{
"kind": "singleType",
"collectionName": "email_settings",
"info": {
"singularName": "email-setting",
"pluralName": "email-settings",
"displayName": "Email Setting"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"uploadCV": {
"displayName": "uploadCV",
"type": "component",
"repeatable": false,
"component": "email-settings.upload-cv"
}
}
}
'use strict';
/**
* email-setting controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::email-setting.email-setting');
'use strict';
/**
* email-setting router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::email-setting.email-setting');
'use strict';
/**
* email-setting service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::email-setting.email-setting');
{
"kind": "collectionType",
"collectionName": "employees",
"info": {
"singularName": "employee",
"pluralName": "employees",
"displayName": "Employee"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"active": {
"type": "boolean"
},
"title": {
"type": "string"
},
"position": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"markdown": {
"type": "richtext"
},
"gaLabel": {
"type": "string"
}
}
}
'use strict';
/**
* employee controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::employee.employee');
'use strict';
/**
* employee router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::employee.employee');
'use strict';
/**
* employee service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::employee.employee');
{
"kind": "collectionType",
"collectionName": "event_locations",
"info": {
"singularName": "event-location",
"pluralName": "event-locations",
"displayName": "Event Location"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"value": {
"type": "string"
},
"active": {
"type": "boolean"
},
"order": {
"type": "integer"
},
"label": {
"type": "string"
}
}
}
'use strict';
/**
* event-location controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::event-location.event-location');
'use strict';
/**
* event-location router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::event-location.event-location');
'use strict';
/**
* event-location service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::event-location.event-location');
{
"kind": "singleType",
"collectionName": "event_lookup_widgets",
"info": {
"singularName": "event-lookup-widget",
"pluralName": "event-lookup-widgets",
"displayName": "EventLookupWidget"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "event-lookup-widget.labels"
},
"resultPageUrl": {
"type": "string"
}
}
}
'use strict';
/**
* event-lookup-widget controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::event-lookup-widget.event-lookup-widget');
'use strict';
/**
* event-lookup-widget router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::event-lookup-widget.event-lookup-widget');
'use strict';
/**
* event-lookup-widget service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::event-lookup-widget.event-lookup-widget');
{
"kind": "collectionType",
"collectionName": "event_months",
"info": {
"singularName": "event-month",
"pluralName": "event-months",
"displayName": "Event Month",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"value": {
"type": "string"
},
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
},
"active": {
"type": "boolean"
},
"order": {
"type": "integer"
},
"label": {
"type": "string"
}
}
}
'use strict';
/**
* event-month controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::event-month.event-month');
'use strict';
/**
* event-month router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::event-month.event-month');
'use strict';
/**
* event-month service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::event-month.event-month');
{
"kind": "collectionType",
"collectionName": "event_types",
"info": {
"singularName": "event-type",
"pluralName": "event-types",
"displayName": "Event Type",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"values": {
"type": "string"
},
"active": {
"type": "boolean"
},
"order": {
"type": "integer"
},
"color": {
"type": "string"
},
"textColor": {
"type": "string"
},
"label": {
"type": "string"
},
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
}
}
}
'use strict';
/**
* event-type controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::event-type.event-type');
'use strict';
/**
* event-type router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::event-type.event-type');
'use strict';
/**
* event-type service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::event-type.event-type');
{
"kind": "collectionType",
"collectionName": "events",
"info": {
"singularName": "event",
"pluralName": "events",
"displayName": "Event",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"title": {
"type": "string"
},
"shortDesc": {
"type": "string"
},
"images": {
"displayName": "images",
"type": "component",
"repeatable": false,
"component": "events.images"
},
"ctaLink": {
"type": "string"
},
"ageLimit": {
"type": "string"
},
"timing": {
"type": "string"
},
"doorOpens": {
"type": "string"
},
"startPrice": {
"type": "string"
},
"startDate": {
"type": "date"
},
"month": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-month.event-month"
},
"types": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-type.event-type"
},
"slug": {
"type": "string"
},
"endDate": {
"type": "date"
},
"dateText": {
"type": "string"
},
"catchPhrase": {
"type": "string"
},
"eventLink": {
"type": "string"
},
"startTime": {
"type": "time"
},
"endTime": {
"type": "time"
},
"startDateTime": {
"type": "string"
},
"endDateTime": {
"type": "string"
},
"gaCategory": {
"type": "string"
},
"gaLabelNewsletterCta": {
"type": "string"
},
"active": {
"type": "boolean"
},
"metaData": {
"displayName": "metaData",
"type": "component",
"repeatable": false,
"component": "meta-data.meta-data"
},
"markdown": {
"type": "richtext"
},
"contents": {
"type": "dynamiczone",
"components": [
"simple-content-area.simple-content-area",
"full-width-video.full-width-youtube-video",
"image-with-content.image-with-content",
"banner.banner",
"social-wall.social-wall",
"event-lookup-widget.event-lookup-widget",
"parallax-section.parallax-section",
"events-grid.eventsgrid",
"partners-carousel.partners-carousel",
"partners-list.partners-list",
"master-form.master-form",
"events-list-carousel.events-list-carousel",
"events.image-ad",
"counters-carousel.counters-carousel",
"ad-space.ad-space",
"accordian.accordian",
"primary-carousel.primary-carousel",
"events-carousel.events-carousel",
"events-listing.events-listing",
"service-pie-tabs.service-pie-tabs",
"venue-carousel.venue-carousel",
"gallery.gallery",
"linkedin-info.linkedin-info",
"resume-uploader.resume-uploader",
"image-banner.image-banner"
]
},
"ads": {
"displayName": "ads",
"type": "component",
"repeatable": false,
"component": "events.ads"
},
"location": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-location.event-location"
},
"pastEvent": {
"type": "boolean"
},
"venueText": {
"type": "string"
},
"ctaText": {
"type": "string"
},
"showNewsletterCta": {
"type": "boolean"
}
}
}
'use strict';
/**
* event controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::event.event');
'use strict';
/**
* event router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::event.event');
'use strict';
/**
* event service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::event.event');
{
"kind": "singleType",
"collectionName": "footers",
"info": {
"singularName": "footer",
"pluralName": "footers",
"displayName": "Footer",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"bottomLinks": {
"displayName": "bottomLinks",
"type": "component",
"repeatable": true,
"component": "footer.bottom-links"
},
"columns": {
"type": "component",
"repeatable": true,
"component": "footer.columns"
}
}
}
'use strict';
/**
* footer controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::footer.footer');
'use strict';
/**
* footer router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::footer.footer');
'use strict';
/**
* footer service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::footer.footer');
{
"kind": "singleType",
"collectionName": "headers",
"info": {
"singularName": "header",
"pluralName": "headers",
"displayName": "Header"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"search": {
"displayName": "search",
"type": "component",
"repeatable": false,
"component": "header.search"
},
"cookiePopup": {
"displayName": "cookiePopup",
"type": "component",
"repeatable": false,
"component": "header.cookie-popup"
},
"vertical1": {
"displayName": "vertical1",
"type": "component",
"repeatable": false,
"component": "header.vertical1"
},
"vertical2": {
"displayName": "vertical2",
"type": "component",
"repeatable": false,
"component": "header.vertical2"
},
"stickyNewsletter": {
"displayName": "stickyNewsletter",
"type": "component",
"repeatable": false,
"component": "header.sticky-newsletter"
}
}
}
'use strict';
/**
* header controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::header.header');
'use strict';
/**
* header router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::header.header');
'use strict';
/**
* header service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::header.header');
{
"kind": "singleType",
"collectionName": "labels",
"info": {
"singularName": "label",
"pluralName": "labels",
"displayName": "Label"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"eventAgeLimit": {
"type": "string"
},
"eventTiming": {
"type": "string"
},
"eventDoorOpens": {
"type": "string"
},
"eventVenue": {
"type": "string"
},
"eventTicketStartPrice": {
"type": "string"
},
"eventShareTitle": {
"type": "string"
},
"eventAddCalender": {
"type": "string"
},
"eventAddCalendarGoogle": {
"type": "string"
},
"eventAddCalendarApple": {
"type": "string"
},
"eventAddCalendarOutlook": {
"type": "string"
},
"eventNewsletterCtaText": {
"type": "string"
}
}
}
'use strict';
/**
* label controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::label.label');
'use strict';
/**
* label router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::label.label');
'use strict';
/**
* label service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::label.label');
{
"kind": "singleType",
"collectionName": "master_forms",
"info": {
"singularName": "master-form",
"pluralName": "master-forms",
"displayName": "MasterForm"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"newsletterEndPoint": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"consents": {
"displayName": "consents",
"type": "component",
"repeatable": false,
"component": "master-form.consents"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "master-form.labels"
}
}
}
'use strict';
/**
* master-form controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::master-form.master-form');
'use strict';
/**
* master-form router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::master-form.master-form');
'use strict';
/**
* master-form service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::master-form.master-form');
{
"kind": "collectionType",
"collectionName": "news_letter_requests",
"info": {
"singularName": "news-letter-request",
"pluralName": "news-letter-requests",
"displayName": "NewsLetterRequest"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"type": {
"type": "string"
},
"company": {
"type": "string"
},
"position": {
"type": "string"
},
"firstname": {
"type": "string"
},
"lastname": {
"type": "string"
},
"phone": {
"type": "string"
},
"consents": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
'use strict';
/**
* news-letter-request controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::news-letter-request.news-letter-request');
'use strict';
/**
* news-letter-request router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::news-letter-request.news-letter-request');
'use strict';
/**
* news-letter-request service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::news-letter-request.news-letter-request');
{
"kind": "collectionType",
"collectionName": "pages",
"info": {
"singularName": "page",
"pluralName": "pages",
"displayName": "Page",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"title": {
"type": "string"
},
"slug": {
"type": "string"
},
"active": {
"type": "boolean"
},
"metaData": {
"type": "component",
"repeatable": false,
"component": "meta-data.meta-data"
},
"contents": {
"type": "dynamiczone",
"components": [
"simple-content-area.simple-content-area",
"full-width-video.full-width-youtube-video",
"image-with-content.image-with-content",
"banner.banner",
"social-wall.social-wall",
"event-lookup-widget.event-lookup-widget",
"parallax-section.parallax-section",
"events-grid.eventsgrid",
"partners-carousel.partners-carousel",
"partners-list.partners-list",
"master-form.master-form",
"events-list-carousel.events-list-carousel",
"counters-carousel.counters-carousel",
"ad-space.ad-space",
"accordian.accordian",
"primary-carousel.primary-carousel",
"events-carousel.events-carousel",
"events-listing.events-listing",
"service-pie-tabs.service-pie-tabs",
"venue-carousel.venue-carousel",
"artist-carousel.artists-carousel",
"vertical-selection.vertical-selection",
"video-banner.video-banner",
"employee-list.employee-list",
"gallery.gallery",
"linkedin-info.linkedin-info",
"resume-uploader.resume-uploader",
"image-banner.image-banner",
"job-listing.job-listing"
]
}
}
}
'use strict';
/**
* page controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::page.page');
'use strict';
/**
* page router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::page.page');
'use strict';
/**
* page service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::page.page');
{
"kind": "collectionType",
"collectionName": "partners",
"info": {
"singularName": "partner",
"pluralName": "partners",
"displayName": "Partner"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"link": {
"type": "string"
},
"title": {
"type": "string"
}
}
}
'use strict';
/**
* partner controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::partner.partner');
'use strict';
/**
* partner router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::partner.partner');
'use strict';
/**
* partner service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::partner.partner');
{
"kind": "singleType",
"collectionName": "partners_lists",
"info": {
"singularName": "partners-list",
"pluralName": "partners-lists",
"displayName": "PartnersList"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"partnersCarousel": {
"type": "component",
"repeatable": true,
"component": "partners-carousel.partners-carousel"
}
}
}
'use strict';
/**
* partners-list controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::partners-list.partners-list');
'use strict';
/**
* partners-list router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::partners-list.partners-list');
'use strict';
/**
* partners-list service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::partners-list.partners-list');
{
"kind": "collectionType",
"collectionName": "venues",
"info": {
"singularName": "venue",
"pluralName": "venues",
"displayName": "Venue",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"metaData": {
"type": "component",
"repeatable": false,
"component": "meta-data.meta-data"
},
"title": {
"type": "string"
},
"slug": {
"type": "string"
},
"contents": {
"type": "dynamiczone",
"components": [
"simple-content-area.simple-content-area",
"full-width-video.full-width-youtube-video",
"image-with-content.image-with-content",
"banner.banner",
"social-wall.social-wall",
"event-lookup-widget.event-lookup-widget",
"parallax-section.parallax-section",
"events-grid.eventsgrid",
"partners-carousel.partners-carousel",
"partners-list.partners-list",
"master-form.master-form",
"events-list-carousel.events-list-carousel",
"counters-carousel.counters-carousel",
"ad-space.ad-space",
"accordian.accordian",
"primary-carousel.primary-carousel",
"events-listing.events-listing",
"events-carousel.events-carousel",
"service-pie-tabs.service-pie-tabs",
"venue-carousel.venue-carousel",
"venue-route-info.venue-route-info",
"linkedin-info.linkedin-info",
"resume-uploader.resume-uploader",
"image-banner.image-banner"
]
},
"active": {
"type": "boolean"
},
"description": {
"type": "string"
},
"markdown": {
"type": "richtext"
},
"images": {
"displayName": "images",
"type": "component",
"repeatable": false,
"component": "venue.images"
},
"routeInfo": {
"displayName": "routeInfo",
"type": "component",
"repeatable": true,
"component": "venue.route-info"
}
}
}
'use strict';
/**
* venue controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::venue.venue');
'use strict';
/**
* venue router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::venue.venue');
'use strict';
/**
* venue service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::venue.venue');
{
"collectionName": "components_accordian_accordians",
"info": {
"displayName": "accordian",
"icon": "battery-three-quarters"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"data": {
"displayName": "data",
"type": "component",
"repeatable": true,
"component": "accordian.data"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_accordian_data",
"info": {
"displayName": "data",
"icon": "arrow-circle-down"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "richtext"
}
}
}
{
"collectionName": "components_ad_space_ad_spaces",
"info": {
"displayName": "adSpace",
"icon": "bars"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"link": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_artist_carousel_artists",
"info": {
"displayName": "ArtistsCarousel",
"icon": "arrow-alt-circle-right"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"gaCategory": {
"type": "string"
},
"active": {
"type": "boolean"
},
"artists": {
"displayName": "artists",
"type": "component",
"repeatable": true,
"component": "artist-carousel.artists"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "artist-carousel.labels"
}
}
}
{
"collectionName": "components_artist_carousel_artists",
"info": {
"displayName": "artists",
"icon": "angle-up"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"name": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"markdown": {
"type": "richtext"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_artist_carousel_labels",
"info": {
"displayName": "labels",
"icon": "atlas"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_banner_media_media",
"info": {
"displayName": "media",
"icon": "arrow-alt-circle-right"
},
"options": {},
"attributes": {
"desktop": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"mobile": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_banner_banners",
"info": {
"displayName": "banner"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"media": {
"displayName": "media",
"type": "component",
"repeatable": true,
"component": "banner-media.media"
}
}
}
{
"collectionName": "components_banner_ctas",
"info": {
"displayName": "cta"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"type": {
"type": "enumeration",
"enum": [
"primary",
"secondary",
"default"
]
}
}
}
{
"collectionName": "components_banner_ens",
"info": {
"displayName": "En",
"icon": "archway"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
}
}
}
{
"collectionName": "components_banner_image_ctas",
"info": {
"displayName": "ImageCta",
"icon": "arrow-alt-circle-left"
},
"options": {},
"attributes": {
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_counters_carousel_counters",
"info": {
"displayName": "countersCarousel",
"icon": "align-left"
},
"options": {},
"attributes": {
"counters": {
"displayName": "counters",
"type": "component",
"repeatable": true,
"component": "counters-carousel.counters"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_counters_carousel_counters",
"info": {
"displayName": "counters",
"icon": "align-center"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_email_settings_upload_cvs",
"info": {
"displayName": "uploadCV",
"icon": "at"
},
"options": {},
"attributes": {
"toEmail": {
"type": "email"
},
"subject": {
"type": "string"
},
"template": {
"type": "string"
}
}
}
{
"collectionName": "components_employee_list_employee_lists",
"info": {
"displayName": "EmployeeList",
"icon": "award"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"theme": {
"type": "enumeration",
"enum": [
"cyan",
"orange"
]
},
"employees": {
"displayName": "employees",
"type": "component",
"repeatable": true,
"component": "employee-list.employees"
}
}
}
{
"collectionName": "components_employee_list_employees",
"info": {
"displayName": "employees"
},
"options": {},
"attributes": {
"employee": {
"type": "relation",
"relation": "oneToOne",
"target": "api::employee.employee"
}
}
}
{
"collectionName": "components_event_location_event_locations",
"info": {
"displayName": "Data",
"icon": "angle-double-left",
"description": ""
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_event_information_informations",
"info": {
"displayName": "informations"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"data": {
"type": "component",
"repeatable": true,
"component": "event-information.event-location"
}
}
}
{
"collectionName": "components_event_locations_data",
"info": {
"displayName": "Data",
"icon": "atom"
},
"options": {},
"attributes": {
"name": {
"type": "string"
},
"latLong": {
"type": "string"
},
"mapLink": {
"type": "string"
},
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_event_locations_locations",
"info": {
"displayName": "Locations",
"icon": "asterisk"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"data": {
"type": "component",
"repeatable": true,
"component": "event-locations.data"
}
}
}
{
"collectionName": "components_event_lookup_widget_ens",
"info": {
"displayName": "en",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"labels": {
"type": "component",
"repeatable": false,
"component": "event-lookup-widget.labels"
}
}
}
{
"collectionName": "components_event_lookup_widget_event_lookup_widgets",
"info": {
"displayName": "event-lookup-widget",
"icon": "align-left"
},
"options": {},
"attributes": {
"enabled": {
"type": "boolean"
}
}
}
{
"collectionName": "components_event_lookup_widget_labels",
"info": {
"displayName": "labels",
"icon": "archway"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"submit": {
"type": "string"
},
"label": {
"type": "string"
},
"typeLabel": {
"type": "string"
},
"typePlaceholder": {
"type": "string"
},
"locationLabel": {
"type": "string"
},
"locationPlaceholder": {
"type": "string"
},
"monthLabel": {
"type": "string"
},
"monthPlaceholder": {
"type": "string"
},
"noResults": {
"type": "string"
},
"resultLoading": {
"type": "string"
},
"resultCtaText": {
"type": "string"
}
}
}
{
"collectionName": "components_event_lookup_widget_locations",
"info": {
"displayName": "Location",
"icon": "dumpster"
},
"options": {},
"attributes": {
"location": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-location.event-location"
}
}
}
{
"collectionName": "components_event_lookup_widget_months",
"info": {
"displayName": "Month"
},
"options": {},
"attributes": {
"month": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-month.event-month"
}
}
}
{
"collectionName": "components_event_lookup_widget_types",
"info": {
"displayName": "Type"
},
"options": {},
"attributes": {
"type": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event-type.event-type"
}
}
}
{
"collectionName": "components_event_partners_data",
"info": {
"displayName": "Data"
},
"options": {},
"attributes": {
"partner": {
"type": "relation",
"relation": "oneToOne",
"target": "api::partner.partner"
}
}
}
{
"collectionName": "components_event_partners_partners",
"info": {
"displayName": "Partners",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"data": {
"type": "component",
"repeatable": true,
"component": "event-partners.data"
}
}
}
{
"collectionName": "components_events_carousel_events_carousels",
"info": {
"displayName": "eventsCarousel",
"icon": "align-right"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"events": {
"displayName": "events",
"type": "component",
"repeatable": true,
"component": "events-carousel.events"
},
"showDescription": {
"type": "boolean"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "events-carousel.labels"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_events_carousel_events",
"info": {
"displayName": "events",
"icon": "arrow-alt-circle-left"
},
"options": {},
"attributes": {
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
}
}
}
{
"collectionName": "components_events_carousel_labels",
"info": {
"displayName": "labels",
"icon": "angle-up"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_events_grid_events",
"info": {
"displayName": "events",
"icon": "archive"
},
"options": {},
"attributes": {
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
}
}
}
{
"collectionName": "components_events_grid_eventsgrids",
"info": {
"displayName": "eventsgrid",
"icon": "atlas"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"text": {
"type": "string"
},
"events": {
"displayName": "events",
"type": "component",
"repeatable": true,
"component": "events-grid.events"
},
"active": {
"type": "boolean"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "events-grid.labels"
},
"showDescription": {
"type": "string"
}
}
}
{
"collectionName": "components_events_grid_labels",
"info": {
"displayName": "labels",
"icon": "allergies"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_events_list_carousel_events_list",
"info": {
"displayName": "eventsListCarousel",
"icon": "align-justify"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"events": {
"displayName": "events",
"type": "component",
"repeatable": true,
"component": "events-list-carousel.events"
},
"active": {
"type": "boolean"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "events-list-carousel.labels"
}
}
}
{
"collectionName": "components_events_list_carousel_events",
"info": {
"displayName": "events",
"icon": "align-left"
},
"options": {},
"attributes": {
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
}
}
}
{
"collectionName": "components_events_list_carousel_labels",
"info": {
"displayName": "labels",
"icon": "align-center"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_events_listing_events_listings",
"info": {
"displayName": "eventsListing",
"icon": "arrow-circle-left"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"events": {
"displayName": "events",
"type": "component",
"repeatable": true,
"component": "events-listing.events"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "events-listing.labels"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_events_listing_events",
"info": {
"displayName": "events",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"event": {
"type": "relation",
"relation": "oneToOne",
"target": "api::event.event"
}
}
}
{
"collectionName": "components_events_listing_labels",
"info": {
"displayName": "labels",
"icon": "arrow-alt-circle-right"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_events_ads",
"info": {
"displayName": "ads",
"icon": "arrows-alt"
},
"options": {},
"attributes": {
"d300x250": {
"displayName": "d300x250",
"type": "component",
"repeatable": false,
"component": "events.d300x250"
},
"Top728x90": {
"displayName": "Top729x90",
"type": "component",
"repeatable": false,
"component": "events.top729x90"
},
"Bottom728x290": {
"displayName": "Bottom728x290",
"type": "component",
"repeatable": false,
"component": "events.bottom728x290"
}
}
}
{
"collectionName": "components_events_bottom728x290s",
"info": {
"displayName": "Bottom728x290",
"icon": "arrows-alt-v"
},
"options": {},
"attributes": {
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_events_d300x250s",
"info": {
"displayName": "d300x250",
"icon": "arrow-alt-circle-left"
},
"options": {},
"attributes": {
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_events_data",
"info": {
"displayName": "Data"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_events_image_ads",
"info": {
"displayName": "imageAd",
"icon": "asterisk"
},
"options": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"gaCategory": {
"type": "string"
}
}
}
{
"collectionName": "components_events_images",
"info": {
"displayName": "images",
"icon": "angle-double-down"
},
"options": {},
"attributes": {
"banner": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"landscape": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"grid": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"portrait": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_events_informations",
"info": {
"displayName": "informations",
"icon": "asterisk"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"data": {
"displayName": "Data",
"type": "component",
"repeatable": true,
"component": "events.data"
}
}
}
{
"collectionName": "components_events_locations",
"info": {
"displayName": "Locations",
"icon": "arrow-alt-circle-up"
},
"options": {},
"attributes": {
"title": {
"type": "string"
}
}
}
{
"collectionName": "components_events_top729x90s",
"info": {
"displayName": "Top728x90",
"icon": "archive",
"description": ""
},
"options": {},
"attributes": {
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"image": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
}
}
}
{
"collectionName": "components_footer_bottom_links",
"info": {
"displayName": "bottomLinks",
"icon": "arrow-circle-down"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"url": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_footer_columns",
"info": {
"displayName": "columns",
"icon": "arrows-alt-v",
"description": ""
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"titleLink": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"links": {
"displayName": "links",
"type": "component",
"repeatable": true,
"component": "footer.links"
},
"socialLinks": {
"displayName": "socialLinks",
"type": "component",
"repeatable": true,
"component": "footer.social-links"
}
}
}
{
"collectionName": "components_footer_labels",
"info": {
"displayName": "labels",
"icon": "anchor"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"url": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_footer_links",
"info": {
"displayName": "links",
"icon": "archway"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"url": {
"type": "string"
},
"gaLabel": {
"type": "string"
},
"icon": {
"type": "enumeration",
"enum": [
"angle-down",
"calendar-alt",
"chevron-down",
"envelope",
"facebook-square",
"folder-open",
"instagram",
"linkedin-in",
"map-marker-alt",
"phone-alt",
"plus",
"search",
"twitter",
"youtube"
]
}
}
}
{
"collectionName": "components_footer_social_links",
"info": {
"displayName": "socialLinks",
"icon": "align-left"
},
"options": {},
"attributes": {
"type": {
"type": "enumeration",
"enum": [
"linkedin",
"twitter",
"facebook",
"instagram",
"youtube"
]
},
"link": {
"type": "string"
},
"title": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_full_width_video_ens",
"info": {
"displayName": "En",
"icon": "apple-alt"
},
"options": {},
"attributes": {
"url": {
"type": "string"
}
}
}
{
"collectionName": "components_full_width_video_full_width_youtube_videos",
"info": {
"displayName": "FullWidthYoutubeVideo",
"icon": "align-right"
},
"options": {},
"attributes": {
"url": {
"type": "string"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_gallery_galleries",
"info": {
"displayName": "Gallery",
"icon": "align-right"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_header_cookie_popups",
"info": {
"displayName": "cookiePopup",
"icon": "asterisk"
},
"options": {},
"attributes": {
"markdown": {
"type": "richtext"
},
"ctaOk": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_header_ens",
"info": {
"displayName": "En",
"icon": "asterisk"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"search": {
"type": "component",
"repeatable": false,
"component": "header.search"
},
"menu": {
"type": "component",
"repeatable": false,
"component": "header.menu"
},
"secondaryMenu": {
"type": "component",
"repeatable": false,
"component": "header.secondary-menu"
},
"cookiePopup": {
"type": "component",
"repeatable": false,
"component": "header.cookie-popup"
}
}
}
{
"collectionName": "components_header_menus",
"info": {
"displayName": "menu",
"icon": "assistive-listening-systems"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_header_newsletters",
"info": {
"displayName": "Newsletter",
"icon": "archway"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_header_searches",
"info": {
"displayName": "search",
"icon": "arrows-alt-v"
},
"options": {},
"attributes": {
"placeholder": {
"type": "string"
},
"btnText": {
"type": "string"
}
}
}
{
"collectionName": "components_header_secondary_menus",
"info": {
"displayName": "secondaryMenu",
"icon": "apple-alt"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_header_sticky_newsletters",
"info": {
"displayName": "stickyNewsletter",
"icon": "arrow-circle-down"
},
"options": {},
"attributes": {
"labelEmail": {
"type": "string"
},
"labelPersonal": {
"type": "string"
},
"labelBusiness": {
"type": "string"
},
"gaLabelCta": {
"type": "string"
},
"title": {
"type": "string"
},
"gaCategory": {
"type": "string"
},
"labelCta": {
"type": "string"
},
"description": {
"type": "string"
},
"gaLabelClose": {
"type": "string"
}
}
}
{
"collectionName": "components_header_vertical1s",
"info": {
"displayName": "vertical1",
"icon": "archway"
},
"options": {},
"attributes": {
"impactUrls": {
"type": "string"
},
"menu": {
"displayName": "menu",
"type": "component",
"repeatable": true,
"component": "header.menu"
},
"secondaryMenu": {
"displayName": "secondaryMenu",
"type": "component",
"repeatable": true,
"component": "header.secondary-menu"
}
}
}
{
"collectionName": "components_header_vertical2s",
"info": {
"displayName": "vertical2",
"icon": "atlas"
},
"options": {},
"attributes": {
"impactUrl": {
"type": "string"
},
"menu": {
"type": "component",
"repeatable": true,
"component": "header.menu"
},
"secondaryMenu": {
"type": "component",
"repeatable": true,
"component": "header.secondary-menu"
}
}
}
{
"collectionName": "components_image_banner_image_banners",
"info": {
"displayName": "Image-banner",
"icon": "arrow-alt-circle-left"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"portrait": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"landscape": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_image_with_content_ens",
"info": {
"displayName": "En",
"icon": "arrow-alt-circle-up"
},
"options": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"imageFit": {
"type": "enumeration",
"enum": [
"cover",
"contain"
]
},
"compact": {
"type": "boolean"
},
"markdown": {
"type": "richtext"
},
"type": {
"type": "enumeration",
"enum": [
"light",
"dark"
]
}
}
}
{
"collectionName": "components_image_with_content_image_with_contents",
"info": {
"displayName": "ImageWithContent",
"icon": "angle-double-down"
},
"options": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"imageFit": {
"type": "enumeration",
"enum": [
"cover",
"contain"
]
},
"compact": {
"type": "boolean"
},
"markdown": {
"type": "richtext"
},
"type": {
"type": "enumeration",
"enum": [
"light",
"dark"
]
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_job_listing_job_listings",
"info": {
"displayName": "jobListing",
"icon": "arrow-circle-down"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"title": {
"type": "string"
},
"jobs": {
"displayName": "jobs",
"type": "component",
"repeatable": true,
"component": "job-listing.jobs"
}
}
}
{
"collectionName": "components_job_listing_jobs",
"info": {
"displayName": "jobs",
"icon": "braille"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"subtitle": {
"type": "string"
},
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_linkedin_info_ctas",
"info": {
"displayName": "cta",
"icon": "archive"
},
"options": {},
"attributes": {
"link": {
"type": "string"
},
"text": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_linkedin_info_linkedin_infos",
"info": {
"displayName": "LinkedinInfo",
"icon": "allergies"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"title": {
"type": "string"
},
"text": {
"type": "string"
},
"Linkedinid": {
"type": "string"
},
"cta": {
"displayName": "cta",
"type": "component",
"repeatable": true,
"component": "linkedin-info.cta"
}
}
}
{
"collectionName": "components_master_form_consents",
"info": {
"displayName": "consents",
"icon": "award"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"fields": {
"displayName": "fields",
"type": "component",
"repeatable": true,
"component": "master-form.fields"
}
}
}
{
"collectionName": "components_master_form_fields",
"info": {
"displayName": "fields",
"icon": "archway"
},
"options": {},
"attributes": {
"label": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
{
"collectionName": "components_master_form_labels",
"info": {
"displayName": "labels",
"icon": "archive"
},
"options": {},
"attributes": {
"personal": {
"type": "string"
},
"business": {
"type": "string"
},
"lastName": {
"type": "string"
},
"errorEmailInvalid": {
"type": "string"
},
"countryCode": {
"type": "string"
},
"formSuccessMessage": {
"type": "string"
},
"errorPhone": {
"type": "string"
},
"message": {
"type": "string"
},
"errorLastName": {
"type": "string"
},
"position": {
"type": "string"
},
"phone": {
"type": "string"
},
"errorPhoneInvalid": {
"type": "string"
},
"errorFirstName": {
"type": "string"
},
"errorEmail": {
"type": "string"
},
"errorCompany": {
"type": "string"
},
"submit": {
"type": "string"
},
"firstName": {
"type": "string"
},
"email": {
"type": "string"
},
"company": {
"type": "string"
},
"errorMessage": {
"type": "string"
},
"formErrorMessage": {
"type": "string"
}
}
}
{
"collectionName": "components_master_form_master_forms",
"info": {
"displayName": "masterForm",
"icon": "archway"
},
"options": {},
"attributes": {
"type": {
"type": "enumeration",
"enum": [
"newsletter"
]
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"bordered": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"gaLabelSuccess": {
"type": "string"
},
"gaLabelError": {
"type": "string"
},
"markdown": {
"type": "richtext"
},
"active": {
"type": "boolean"
},
"submitText": {
"type": "string"
}
}
}
{
"collectionName": "components_meta_data_ens",
"info": {
"displayName": "En",
"icon": "award"
},
"options": {},
"attributes": {
"pageTitle": {
"type": "string"
},
"metaDescription": {
"type": "string"
},
"metaKeywords": {
"type": "string"
},
"ogTitle": {
"type": "string"
},
"ogDescription": {
"type": "string"
},
"ogImage": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_meta_data_meta_data",
"info": {
"displayName": "metaData",
"icon": "angle-double-left"
},
"options": {},
"attributes": {
"pageTitle": {
"type": "string"
},
"metaDescription": {
"type": "string"
},
"metaKeywords": {
"type": "string"
},
"ogTitle": {
"type": "string"
},
"ogDescription": {
"type": "string"
},
"ogImage": {
"type": "string"
}
}
}
{
"collectionName": "components_parallax_section_ctas",
"info": {
"displayName": "cta",
"icon": "arrow-circle-down"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_parallax_section_ens",
"info": {
"displayName": "En",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"cta": {
"type": "component",
"repeatable": true,
"component": "parallax-section.cta"
},
"floatingCta": {
"type": "component",
"repeatable": true,
"component": "parallax-section.floating-cta"
}
}
}
{
"collectionName": "components_parallax_section_floating_ctas",
"info": {
"displayName": "floatingCta",
"icon": "arrow-alt-circle-right"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_parallax_section_parallax",
"info": {
"displayName": "parallaxSection",
"icon": "align-center"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"cta": {
"displayName": "cta",
"type": "component",
"repeatable": true,
"component": "parallax-section.cta"
},
"floatingCta": {
"displayName": "floatingCta",
"type": "component",
"repeatable": true,
"component": "parallax-section.floating-cta"
},
"active": {
"type": "boolean"
},
"desktop": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"mobile": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_partners_carousel_partners",
"info": {
"displayName": "partnersCarousel",
"icon": "angle-double-down",
"description": ""
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"type": {
"type": "enumeration",
"enum": [
"default",
"pink",
"blue",
"turquoise"
]
},
"title": {
"type": "string"
},
"partners": {
"displayName": "partners",
"type": "component",
"repeatable": false,
"component": "partners-carousel.partners"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_partners_carousel_partners",
"info": {
"displayName": "partners",
"icon": "align-right",
"description": ""
},
"options": {},
"attributes": {
"partner": {
"type": "relation",
"relation": "oneToOne",
"target": "api::partner.partner"
}
}
}
{
"collectionName": "components_partners_list_partners_lists",
"info": {
"displayName": "partnersList"
},
"options": {},
"attributes": {
"enabled": {
"type": "boolean"
}
}
}
{
"collectionName": "components_primary_carousel_ctas",
"info": {
"displayName": "cta",
"icon": "align-right"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_primary_carousel_ens",
"info": {
"displayName": "En",
"icon": "arrow-alt-circle-right"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
}
}
}
{
"collectionName": "components_primary_carousel_images",
"info": {
"displayName": "Images",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"desktop": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"mobile": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_primary_carousel_primary",
"info": {
"displayName": "PrimaryCarousel"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"title": {
"type": "string"
},
"active": {
"type": "boolean"
},
"slides": {
"displayName": "slides",
"type": "component",
"repeatable": true,
"component": "primary-carousel.slides"
}
}
}
{
"collectionName": "components_primary_carousel_slides",
"info": {
"displayName": "slides",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_resume_uploader_labels",
"info": {
"displayName": "labels",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"successMessage": {
"type": "string"
},
"errorEmpty": {
"type": "string"
},
"submitText": {
"type": "string"
},
"errorFileSize": {
"type": "string"
},
"errorServer": {
"type": "string"
},
"browseFieldText": {
"type": "string"
},
"ctaText": {
"type": "string"
},
"errorFileType": {
"type": "string"
},
"browseBtnText": {
"type": "string"
}
}
}
{
"collectionName": "components_resume_uploader_resume_uploaders",
"info": {
"displayName": "ResumeUploader",
"icon": "audio-description"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"ctaGaLabel": {
"type": "string"
},
"submitGaLabel": {
"type": "string"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "resume-uploader.labels"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_service_pie_tabs_content_creations",
"info": {
"displayName": "ContentCreation"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_corporate_services",
"info": {
"displayName": "CorporateServices"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_ctas",
"info": {
"displayName": "cta",
"icon": "arrows-alt-h"
},
"options": {},
"attributes": {
"text": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_data",
"info": {
"displayName": "data",
"icon": "angle-up"
},
"options": {},
"attributes": {}
}
{
"collectionName": "components_service_pie_tabs_hospitalities",
"info": {
"displayName": "Hospitality",
"icon": "archway"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_logistics_operations",
"info": {
"displayName": "LogisticsOperation"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_marketing_communications",
"info": {
"displayName": "MarketingCommunication"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_project_managements",
"info": {
"displayName": "ProjectManagement"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_service",
"info": {
"displayName": "servicePieTabs",
"icon": "arrow-alt-circle-down"
},
"options": {},
"attributes": {
"gaCategory": {
"type": "string"
},
"cta": {
"displayName": "cta",
"type": "component",
"repeatable": false,
"component": "service-pie-tabs.cta"
},
"data": {
"displayName": "data",
"type": "component",
"repeatable": false,
"component": "service-pie-tabs.data"
}
}
}
{
"collectionName": "components_service_pie_tabs_strategic_plannings",
"info": {
"displayName": "StrategicPlanning"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_talent_procurements",
"info": {
"displayName": "TalentProcurement"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_ticketing_sales",
"info": {
"displayName": "TicketingSales"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_tv_broadcast_distributions",
"info": {
"displayName": "TvBroadcastDistribution"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_service_pie_tabs_venue_managements",
"info": {
"displayName": "VenueManagement"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_simple_content_area_ens",
"info": {
"displayName": "En"
},
"options": {},
"attributes": {
"markdown": {
"type": "richtext"
}
}
}
{
"collectionName": "components_simple_content_area_simple_content_areas",
"info": {
"displayName": "SimpleContentArea",
"icon": "align-right"
},
"options": {},
"attributes": {
"markdown": {
"type": "richtext"
},
"alignCenter": {
"type": "boolean"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_social_wall_ens",
"info": {
"displayName": "En"
},
"options": {},
"attributes": {
"url": {
"type": "string"
}
}
}
{
"collectionName": "components_social_wall_social_walls",
"info": {
"displayName": "SocialWall",
"icon": "align-justify"
},
"options": {},
"attributes": {
"url": {
"type": "string"
},
"active": {
"type": "boolean"
}
}
}
{
"collectionName": "components_venue_carousel_labels",
"info": {
"displayName": "labels",
"icon": "asterisk"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_venue_carousel_venue_carousels",
"info": {
"displayName": "venueCarousel",
"description": ""
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"showDescription": {
"type": "boolean"
},
"labels": {
"displayName": "labels",
"type": "component",
"repeatable": false,
"component": "venue-carousel.labels"
},
"venues": {
"displayName": "venues",
"type": "component",
"repeatable": false,
"component": "venue-carousel.venues"
},
"title": {
"type": "string"
}
}
}
{
"collectionName": "components_venue_carousel_venues",
"info": {
"displayName": "venues",
"icon": "arrow-alt-circle-left",
"description": ""
},
"options": {},
"attributes": {
"venue": {
"type": "relation",
"relation": "oneToOne",
"target": "api::venue.venue"
}
}
}
{
"collectionName": "components_venue_listing_labels",
"info": {
"displayName": "Labels"
},
"options": {},
"attributes": {
"ctaText": {
"type": "string"
}
}
}
{
"collectionName": "components_venue_listing_venue_listings",
"info": {
"displayName": "VenueListing"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"labels": {
"type": "component",
"repeatable": false,
"component": "venue-listing.labels"
},
"venues": {
"displayName": "Venues",
"type": "component",
"repeatable": true,
"component": "venue-listing.venues"
}
}
}
{
"collectionName": "components_venue_listing_venues",
"info": {
"displayName": "Venues"
},
"options": {},
"attributes": {
"venue": {
"type": "relation",
"relation": "oneToOne",
"target": "api::venue.venue"
}
}
}
{
"collectionName": "components_venue_route_info_venue_route_infos",
"info": {
"displayName": "VenueRouteInfo",
"icon": "angle-double-down",
"description": ""
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"active": {
"type": "boolean"
},
"venue": {
"type": "relation",
"relation": "oneToOne",
"target": "api::venue.venue"
}
}
}
{
"collectionName": "components_venue_data",
"info": {
"displayName": "Data"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"ctaText": {
"type": "string"
},
"ctaLink": {
"type": "string"
},
"ctaGaLabel": {
"type": "string"
},
"markdown": {
"type": "richtext"
},
"mapIframe": {
"type": "richtext"
}
}
}
{
"collectionName": "components_venue_images",
"info": {
"displayName": "images"
},
"options": {},
"attributes": {
"landscape": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"portrait": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"grid": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
{
"collectionName": "components_venue_route_infos",
"info": {
"displayName": "routeInfo",
"icon": "archive"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"ctaText": {
"type": "string"
},
"ctaLink": {
"type": "string"
},
"ctaGaLabel": {
"type": "string"
},
"markdown": {
"type": "richtext"
},
"mapIframe": {
"type": "richtext"
}
}
}
{
"collectionName": "components_venue_stats",
"info": {
"displayName": "Stats"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
{
"collectionName": "components_venue_venues",
"info": {
"displayName": "Venues"
},
"options": {},
"attributes": {
"venue": {
"type": "relation",
"relation": "oneToOne",
"target": "api::venue.venue"
}
}
}
{
"collectionName": "components_vertical_selection_vertical",
"info": {
"displayName": "VerticalSelection",
"icon": "battery-three-quarters"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"gaCategory": {
"type": "string"
},
"vertical1": {
"displayName": "vertical1",
"type": "component",
"repeatable": false,
"component": "vertical-selection.vertical1"
},
"vertical2": {
"displayName": "vertical2",
"type": "component",
"repeatable": false,
"component": "vertical-selection.vertical2"
}
}
}
{
"collectionName": "components_vertical_selection_vertical1s",
"info": {
"displayName": "vertical1",
"icon": "asterisk"
},
"options": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_vertical_selection_vertical2s",
"info": {
"displayName": "vertical2",
"icon": "atom"
},
"options": {},
"attributes": {
"image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"gaLabel": {
"type": "string"
}
}
}
{
"collectionName": "components_video_banner_video_banners",
"info": {
"displayName": "videoBanner",
"icon": "bookmark"
},
"options": {},
"attributes": {
"active": {
"type": "boolean"
},
"portrait": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"landscape": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
},
"loop": {
"type": "boolean"
}
}
}
'use strict';
module.exports = {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register(/*{ strapi }*/) {},
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
bootstrap(/*{ strapi }*/) {},
};
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment