Remove "3DS mode" setting as it no longer has an effect

This commit is contained in:
Raphael Michel
2019-08-08 19:25:12 +02:00
parent 8f0a5d859d
commit 191729c07a
2 changed files with 0 additions and 13 deletions

View File

@@ -198,18 +198,6 @@ class StripeSettingsHolder(BasePaymentProvider):
),
required=False,
)),
('cc_3ds_mode',
forms.ChoiceField(
label=_('3D Secure mode'),
help_text=_('This determines when we will use the 3D Secure methods for credit card payments. '
'Using 3D Secure (also known as Verified by VISA or MasterCard SecureCode) reduces '
'the risk of fraud but makes the payment process a bit longer.'),
choices=(
('required', pgettext('stripe 3dsecure', 'Only when required by the card')),
('recommended', pgettext('stripe 3dsecure', 'Always when recommended by Stripe')),
('optional', pgettext('stripe 3dsecure', 'Always when supported by the card')),
),
)),
] + list(super().settings_form_fields.items())
)
d.move_to_end('_enabled', last=False)

View File

@@ -81,7 +81,6 @@ def pretixcontrol_logentry_display(sender, logentry, **kwargs):
settings_hierarkey.add_default('payment_stripe_method_cc', True, bool)
settings_hierarkey.add_default('payment_stripe_cc_3ds_mode', 'recommended', str)
@receiver(register_global_settings, dispatch_uid='stripe_global_settings')