update config with tdf values

featrue/v3.6
Pascal 2 weeks ago
parent be6478dcf0
commit 0f402c0618
  1. 13
      config/config.php

@ -21,7 +21,7 @@ return [
'maintenance' => (bool) env('MAINTENANCE', false),
// Application name (not the event name)
'app_name' => env('APP_NAME', 'Engelsystem'),
'app_name' => env('APP_NAME', 'Elfensystem'),
// Set to development to enable debugging messages
'environment' => env('ENVIRONMENT', 'production'),
@ -51,14 +51,14 @@ return [
'faq.faq' => [env('FAQ_URL', '/faq'), 'faq.view'],
// Contact email address, linked on every page
'Contact' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'),
// 'Contact' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'),
],
// Other ways to ask the heaven
// Multiple contact options / links are possible, analogue to footer_items
'contact_options' => [
// E-mail address
'general.email' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'),
// 'general.email' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'),
],
// Additional text displayed on the FAQ page, rendered as markdown
@ -151,7 +151,7 @@ return [
],
// Default theme, 1 = theme1.scss etc.
'theme' => env('THEME', 1),
'theme' => env('THEME', 17),
// Supported themes
// To disable a theme in config.php, you can set its value to null
@ -271,7 +271,7 @@ return [
'pronoun' => (bool) env('PRONOUN_REQUIRED', false),
'firstname' => (bool) env('FIRSTNAME_REQUIRED', false),
'lastname' => (bool) env('LASTNAME_REQUIRED', false),
'tshirt_size' => (bool) env('TSHIRT_SIZE_REQUIRED', true),
'tshirt_size' => (bool) env('TSHIRT_SIZE_REQUIRED', false),
'mobile' => (bool) env('MOBILE_REQUIRED', false),
'dect' => (bool) env('DECT_REQUIRED', false),
],
@ -392,11 +392,10 @@ return [
// To disable a locale in config.php, you can set its value to null
'locales' => [
'de_DE' => 'Deutsch',
'en_US' => 'English',
],
// The default locale to use
'default_locale' => env('DEFAULT_LOCALE', 'en_US'),
'default_locale' => env('DEFAULT_LOCALE', 'de_DE'),
// Available T-Shirt sizes
// To disable a t-shirt size in config.php, you can set its value to null

Loading…
Cancel
Save