Fix forms being unavailable in backend

This commit is contained in:
Björn Fromme
2020-04-17 11:58:16 +02:00
parent 7ac1deaee6
commit 31c2048114
3 changed files with 8 additions and 11 deletions
+4 -7
View File
@@ -1,14 +1,11 @@
base: / base: /
baseVariants: baseVariants:
- -
base: 'https://eptypo3.burn.dpn' base: 'https://eptypo3.ddev.site'
condition: 'applicationContext == "Development"' condition: 'applicationContext == "Development"'
- -
base: 'https://schnee-event.burn.dpn' base: 'https://schnee-event.ddev.site'
condition: 'applicationContext == "Development/Skimax"' condition: 'applicationContext == "Development/Skimax"'
-
base: 'https://ep-reisen.ddev.site'
condition: 'applicationContext == "Development/Ddev"'
disableStaticFileCache: true disableStaticFileCache: true
errorHandling: errorHandling:
- -
@@ -130,8 +127,8 @@ routeEnhancers:
date_to: date_to:
type: PassthroughMapper type: PassthroughMapper
requirements: requirements:
product_uid: '\d' product_uid: \d
hotel_uid: '\d' hotel_uid: \d
date_from: '\d{4}\-\d{2}\-\d{2}' date_from: '\d{4}\-\d{2}\-\d{2}'
date_to: '\d{4}\-\d{2}\-\d{2}' date_to: '\d{4}\-\d{2}\-\d{2}'
BookingLinkPlugin: BookingLinkPlugin:
@@ -2,12 +2,8 @@ TYPO3:
CMS: CMS:
Form: Form:
persistenceManager: persistenceManager:
allowedFileMounts:
10: '1:/user_upload/Formulare/'
allowedExtensionPaths: allowedExtensionPaths:
10: EXT:ep_theme/Resources/Private/Forms/ 10: EXT:ep_theme/Resources/Private/Forms/
allowSaveToExtensionPaths: false
allowDeleteFromExtensionPaths: false
prototypes: prototypes:
standard: standard:
@@ -7,3 +7,7 @@ plugin.tx_form.view {
plugin.tx_form.settings.yamlConfigurations { plugin.tx_form.settings.yamlConfigurations {
100 = EXT:ep_theme/Configuration/Forms/FormSetup.yaml 100 = EXT:ep_theme/Configuration/Forms/FormSetup.yaml
} }
module.tx_form.settings.yamlConfigurations {
100 = EXT:ep_theme/Configuration/Forms/FormSetup.yaml
}