fix: 🐛 correct stripe_methods seed

This commit is contained in:
IceToast 2022-01-29 04:21:48 +01:00
parent 50f12d3cd6
commit 30879c606d

View file

@ -313,7 +313,7 @@ class SettingsSeeder extends Seeder
Settings::firstOrCreate([ Settings::firstOrCreate([
'key' => 'SETTINGS::PAYMENTS:STRIPE:METHODS', 'key' => 'SETTINGS::PAYMENTS:STRIPE:METHODS',
], [ ], [
'value' => env('STRIPE_METHODS', '[\'card\', \'ideal\']'), 'value' => env('STRIPE_METHODS', 'card,sepa_debit'),
'type' => 'string', 'type' => 'string',
'description' => 'Comma seperated list of payment methods that are enabled (https://stripe.com/docs/payments/payment-methods/integration-options)' 'description' => 'Comma seperated list of payment methods that are enabled (https://stripe.com/docs/payments/payment-methods/integration-options)'
]); ]);